mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Specialise removeConst for nullptr
This commit is contained in:
parent
180d9242f5
commit
b6e7c9bd7a
@ -39,6 +39,9 @@ namespace Internal {
|
|||||||
|
|
||||||
template<typename T>
|
template<typename T>
|
||||||
T& removeConst(T const &t) { return const_cast<T&>(t); }
|
T& removeConst(T const &t) { return const_cast<T&>(t); }
|
||||||
|
#ifdef CATCH_CONFIG_CPP11_NULLPTR
|
||||||
|
inline std::nullptr_t removeConst(std::nullptr_t) { return nullptr; }
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// So the compare overloads can be operator agnostic we convey the operator as a template
|
// So the compare overloads can be operator agnostic we convey the operator as a template
|
||||||
|
Loading…
Reference in New Issue
Block a user