]> git.sesse.net Git - casparcg/blobdiff - common/except.h
* Upgraded to Visual Studio 2013
[casparcg] / common / except.h
index d964360e2457798c3f17bde9c08adbfd1acdaa9d..0b7333f8ea6840087d29151678f14c3e57a00111 100644 (file)
@@ -133,22 +133,3 @@ private:
 
 }
 
-namespace std
-{
-
-inline bool operator!=(const std::exception_ptr& lhs, const std::exception_ptr& rhs)
-{
-       return !(lhs == rhs);
-}
-
-inline bool operator!=(const std::exception_ptr& lhs, std::nullptr_t)
-{
-       return !(lhs == nullptr);
-}
-
-inline bool operator!=(std::nullptr_t, const std::exception_ptr& rhs)
-{
-       return !(nullptr == rhs);
-}
-
-}
\ No newline at end of file