MCPcopy Create free account
hub / github.com/Compaile/ctrack / remove_const

Class remove_const

test/doctest.h:963–963  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

961 template <typename T> struct is_rvalue_reference<T&&> : true_type { };
962
963 template<typename T> struct remove_const { using type = T; };
964 template <typename T> struct remove_const<const T> { using type = T; };
965
966 // Compiler intrinsics

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected