Removed superfluous inline specifications

This commit is contained in:
Martin Hořeňovský 2017-07-19 10:11:10 +02:00
parent edbe122761
commit d7ff62430a
3 changed files with 8 additions and 8 deletions

View file

@ -37,7 +37,7 @@ namespace Internal {
template<> struct OperatorTraits<IsGreaterThanOrEqualTo>{ static const char* getName(){ return ">="; } };
template<typename T>
inline T& opCast(T const& t) { return const_cast<T&>(t); }
T& opCast(T const& t) { return const_cast<T&>(t); }
// nullptr_t support based on pull request #154 from Konstantin Baumann
inline std::nullptr_t opCast(std::nullptr_t) { return nullptr; }