bitset (bitset<>::bitset(), [...]): Add constexpr specifier.
2010-11-07 Paolo Carlini <paolo.carlini@oracle.com> * include/profile/bitset (bitset<>::bitset(), bitset<>:: bitset(unsigned long long)): Add constexpr specifier. From-SVN: r166417
This commit is contained in:
parent
17e3f4aa17
commit
52b8df0139
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
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
|
||||
|
|
|
@ -95,10 +95,10 @@ namespace __profile
|
|||
};
|
||||
|
||||
// 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
|
||||
|
|
Loading…
Add table
Reference in a new issue