We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
always false idiome dependent_false.hpp
// Distributed under the Boost Software License Version 1.0 https://www.boost.org/LICENSE_1_0.txt // Copyright Gero Peterhoff #ifndef BOOST_TYPE_TRAITS_DEPENDENT_FALSE_HPP #define BOOST_TYPE_TRAITS_DEPENDENT_FALSE_HPP #include <boost/type_traits/integral_constant.hpp> namespace boost { template <typename... Types> struct dependent_false : public false_type{}; #if !defined(BOOST_NO_CXX17_INLINE_VARIABLES) template <typename... Types> inline constexpr bool dependent_false_v = dependent_false<Types...>::value; #endif } // boost #endif // BOOST_TYPE_TRAITS_DEPENDENT_FALSE_HPP
The text was updated successfully, but these errors were encountered:
Use case?
Sorry, something went wrong.
https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p2593r0.html
cplusplus/papers#572
No branches or pull requests
always false idiome
dependent_false.hpp
The text was updated successfully, but these errors were encountered: