re PR libstdc++/67078 (FAIL: 24_iterators/container_access.cc (test for excess errors...
authorJonathan Wakely <jwakely@redhat.com>
Mon, 3 Aug 2015 15:56:17 +0000 (16:56 +0100)
committerJonathan Wakely <redi@gcc.gnu.org>
Mon, 3 Aug 2015 15:56:17 +0000 (16:56 +0100)
PR libstdc++/67078
* include/bits/range_access.h (size, empty, data): Fix _N bad name.

From-SVN: r226515

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/range_access.h

index 5f87dddaa6f2a7059a7880cf245497ed70bbba11..f7b1c6bb40e03e5f92a60940f1dc95bedc78788f 100644 (file)
@@ -1,3 +1,8 @@
+2015-08-03  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/67078
+       * include/bits/range_access.h (size, empty, data): Fix _N bad name.
+
 2015-07-30  Jonathan Wakely  <jwakely@redhat.com>
 
        * testsuite/experimental/filesystem/operations/current_path.cc: Use
index 2a1059885d7b34d29ab0ee478327768e826d01ae..586d162bc8cb41bdc88084221f291aaff981a67c 100644 (file)
@@ -237,10 +237,10 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
    *  @brief  Return the size of an array.
    *  @param  __array  Array.
    */
-  template <typename _Tp, size_t _N>
+  template <typename _Tp, size_t _Nm>
     constexpr size_t
-    size(const _Tp (&/*__array*/)[_N]) noexcept
-    { return _N; }
+    size(const _Tp (&/*__array*/)[_Nm]) noexcept
+    { return _Nm; }
 
   /**
    *  @brief  Return whether a container is empty.
@@ -255,9 +255,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
    *  @brief  Return whether an array is empty (always false).
    *  @param  __array  Container.
    */
-  template <typename _Tp, size_t _N>
+  template <typename _Tp, size_t _Nm>
     constexpr bool
-    empty(const _Tp (&/*__array*/)[_N]) noexcept
+    empty(const _Tp (&/*__array*/)[_Nm]) noexcept
     { return false; }
 
   /**
@@ -291,9 +291,9 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
    *  @brief  Return the data pointer of an array.
    *  @param  __array  Array.
    */
-  template <typename _Tp, size_t _N>
+  template <typename _Tp, size_t _Nm>
     constexpr _Tp*
-    data(_Tp (&__array)[_N]) noexcept
+    data(_Tp (&__array)[_Nm]) noexcept
     { return __array; }
 
   /**