Skip to content

Commit 7cbb0da

Browse files
strega-nil-msstrega-nilAlexGuteniev
authored
add transition comment to ios_base::hexfloat (#3300)
Co-authored-by: Nicole Mazzuca <[email protected]> Co-authored-by: Alex Guteniev <[email protected]>
1 parent ab26a21 commit 7cbb0da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stl/inc/xiosbase

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public:
4444
static constexpr _Fmtflags scientific = static_cast<_Fmtflags>(0x1000);
4545
static constexpr _Fmtflags fixed = static_cast<_Fmtflags>(0x2000);
4646

47-
static constexpr _Fmtflags hexfloat = static_cast<_Fmtflags>(0x3000); // added with TR1 (not in C++11)
47+
static constexpr _Fmtflags hexfloat = static_cast<_Fmtflags>(0x3000); // TRANSITION, ABI, GH-3296
4848

4949
static constexpr _Fmtflags boolalpha = static_cast<_Fmtflags>(0x4000);
5050
static constexpr _Fmtflags _Stdio = static_cast<_Fmtflags>(0x8000);
@@ -124,7 +124,7 @@ template <class _Dummy>
124124
const typename _Iosb<_Dummy>::_Fmtflags _Iosb<_Dummy>::fixed;
125125

126126
template <class _Dummy>
127-
const typename _Iosb<_Dummy>::_Fmtflags _Iosb<_Dummy>::hexfloat; // added with TR1 (not in C++11)
127+
const typename _Iosb<_Dummy>::_Fmtflags _Iosb<_Dummy>::hexfloat; // TRANSITION, ABI, GH-3296
128128

129129
template <class _Dummy>
130130
const typename _Iosb<_Dummy>::_Fmtflags _Iosb<_Dummy>::boolalpha;

0 commit comments

Comments
 (0)