VCCC  2024.05
VisualCamp Common C++ library
maybe_const.hpp File Reference
#include <type_traits>

Go to the source code of this file.

Namespaces

 vccc
 

Typedefs

template<bool Const, typename V >
using maybe_const = std::conditional_t< Const, const V, V >