Skip to content

Commit baba435

Browse files
Dawn Perchikzygoloid
authored andcommitted
LWG3042 is_literal_type_v should be inline
1 parent 7bebe67 commit baba435

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/future.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2159,7 +2159,7 @@
21592159
\begin{codeblock}
21602160
namespace std {
21612161
template<class T> struct is_literal_type;
2162-
template<class T> constexpr bool is_literal_type_v = is_literal_type<T>::value;
2162+
template<class T> inline constexpr bool is_literal_type_v = is_literal_type<T>::value;
21632163

21642164
template<class> struct result_of; // not defined
21652165
template<class Fn, class... ArgTypes> struct result_of<Fn(ArgTypes...)>;

0 commit comments

Comments
 (0)