File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 160
160
template<class T, T v> struct integral_constant;
161
161
162
162
template<bool B>
163
- using bool_constant = integral_constant<bool, B>;
164
- using true_type = bool_constant<true>;
165
- using false_type = bool_constant<false>;
163
+ using @ \libglobal { bool_constant}@ = integral_constant<bool, B>;
164
+ using @ \libglobal { true_type}@ = bool_constant<true>;
165
+ using @ \libglobal { false_type}@ = bool_constant<false>;
166
166
167
167
// \ref {meta.unary.cat }, primary type categories
168
168
template<class T> struct is_void;
595
595
\indexlibrarymember {value_type}{integral_constant}%
596
596
\begin {codeblock }
597
597
namespace std {
598
- template<class T, T v> struct integral_constant {
598
+ template<class T, T v> struct @ \libglobal { integral_constant}@ {
599
599
static constexpr T value = v;
600
600
601
601
using value_type = T;
607
607
}
608
608
\end {codeblock }
609
609
610
- \indexlibraryglobal {integral_constant}%
611
610
\indexlibraryglobal {bool_constant}%
612
611
\indexlibraryglobal {true_type}%
613
612
\indexlibraryglobal {false_type}%
You can’t perform that action at this time.
0 commit comments