* include/profile/bitset (bitset<>::bitset(), bitset<>::
bitset(unsigned long long)): Add constexpr specifier.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166417
138bc75d-0d04-0410-961f-
82ee72b054a4
2010-11-07 Paolo Carlini <paolo.carlini@oracle.com>
+ * include/profile/bitset (bitset<>::bitset(), bitset<>::
+ bitset(unsigned long long)): Add constexpr specifier.
+
+2010-11-07 Paolo Carlini <paolo.carlini@oracle.com>
+
* include/debug/bitset: Do not derive from _Safe_sequence_base in
C++0x mode, otherwise std::bitset isn't a literal type anymore;
adjust everywhere.
};
// 23.3.5.1 constructors:
- bitset() : _Base() { }
+ _GLIBCXX_CONSTEXPR bitset() : _Base() { }
#ifdef __GXX_EXPERIMENTAL_CXX0X__
- bitset(unsigned long long __val)
+ constexpr bitset(unsigned long long __val)
#else
bitset(unsigned long __val)
#endif