Skip to content

Commit bb81c7b

Browse files
dimarusyygrisumbras
authored andcommitted
Issue boostorg#665 : remove unused value_ref::is_builtin
1 parent 54cb345 commit bb81c7b

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

include/boost/json/value_ref.hpp

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -152,23 +152,6 @@ class value_ref
152152
explicit arg_type(std::nullptr_t) noexcept : nullptr_() {}
153153
};
154154

155-
template<class T>
156-
using is_builtin =
157-
std::integral_constant<bool,
158-
std::is_same<T, signed char>::value ||
159-
std::is_same<T, short>::value ||
160-
std::is_same<T, int>::value ||
161-
std::is_same<T, long>::value ||
162-
std::is_same<T, long long>::value ||
163-
std::is_same<T, unsigned char>::value ||
164-
std::is_same<T, unsigned short>::value ||
165-
std::is_same<T, unsigned int>::value ||
166-
std::is_same<T, unsigned long>::value ||
167-
std::is_same<T, unsigned long long>::value ||
168-
std::is_same<T, float>::value ||
169-
std::is_same<T, double>::value ||
170-
std::is_same<T, std::nullptr_t>::value>;
171-
172155
arg_type arg_;
173156
#ifndef BOOST_JSON_DOCS
174157
// VFALCO doc toolchain erroneously

0 commit comments

Comments
 (0)