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

Class remove_reference

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

Source from the content-addressed store, hash-verified

954 struct false_type { static DOCTEST_CONSTEXPR bool value = false; };
955
956 template <typename T> struct remove_reference { using type = T; };
957 template <typename T> struct remove_reference<T&> { using type = T; };
958 template <typename T> struct remove_reference<T&&> { using type = T; };
959

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected