aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/bits/moveable.h
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++-v3/include/bits/moveable.h')
-rw-r--r--libstdc++-v3/include/bits/moveable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/include/bits/moveable.h b/libstdc++-v3/include/bits/moveable.h
index 93c6f120837..5a2f2c31890 100644
--- a/libstdc++-v3/include/bits/moveable.h
+++ b/libstdc++-v3/include/bits/moveable.h
@@ -40,7 +40,7 @@ namespace __gnu_cxx
template<class _Tp>
struct __is_moveable
- { static const bool value = false; };
+ { static const bool __value = false; };
template<class _Tp>
struct __rvalref
@@ -51,7 +51,7 @@ namespace __gnu_cxx
__rvalref(_Tp& __inref) : __ref(__inref) { }
};
- template<class _Tp, bool = __is_moveable<_Tp>::value>
+ template<class _Tp, bool = __is_moveable<_Tp>::__value>
struct __move_helper
{
typedef _Tp& __type;