Fix for a bogus MSVC warning (#244)

This commit is contained in:
vitaut 2015-12-09 08:57:29 -08:00
parent 5c76d107cb
commit ecd52bc610

View File

@ -976,6 +976,7 @@ template <typename T>
T &get();
struct DummyStream : std::ostream {
DummyStream(); // Suppress a bogus warning in MSVC.
// Hide all operator<< overloads from std::ostream.
void operator<<(Null<>);
};