Added missing STL type traits include.

This commit is contained in:
Tim Ambrogi 2022-05-19 10:09:54 -04:00
parent 80c6a4aa8e
commit 79185006a8
2 changed files with 2 additions and 0 deletions

View File

@ -55,6 +55,7 @@ NAMESPACE_SQUID_END
#endif
// False type for use in static_assert() [static_assert(false, ...) -> static_assert(static_false<T>, ...)]
#include <type_traits>
template<typename T>
struct static_false : std::false_type
{

View File

@ -55,6 +55,7 @@ NAMESPACE_SQUID_END
#endif
// False type for use in static_assert() [static_assert(false, ...) -> static_assert(static_false<T>, ...)]
#include <type_traits>
template<typename T>
struct static_false : std::false_type
{