From ecd52bc61056382c580f81866c1f95a56fc1656a Mon Sep 17 00:00:00 2001 From: vitaut Date: Wed, 9 Dec 2015 08:57:29 -0800 Subject: [PATCH] Fix for a bogus MSVC warning (#244) --- format.h | 1 + 1 file changed, 1 insertion(+) diff --git a/format.h b/format.h index a98a1660..45d54283 100644 --- a/format.h +++ b/format.h @@ -976,6 +976,7 @@ template T &get(); struct DummyStream : std::ostream { + DummyStream(); // Suppress a bogus warning in MSVC. // Hide all operator<< overloads from std::ostream. void operator<<(Null<>); };