From 99abbda44e010ee200ed87951d73e635f4191115 Mon Sep 17 00:00:00 2001 From: Evan Wallace Date: Sat, 23 Sep 2017 20:29:08 +1000 Subject: [PATCH] Removed non-standard-compliant forward declarations of members of std namespace. --- src/prettyprint.hpp | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/src/prettyprint.hpp b/src/prettyprint.hpp index 6f8787ab..c85e873e 100644 --- a/src/prettyprint.hpp +++ b/src/prettyprint.hpp @@ -8,15 +8,8 @@ #include #include - -namespace std -{ - // Pre-declarations of container types so we don't actually have to include the relevant headers if not needed, speeding up compilation time. - template class set; - template class multiset; - template class unordered_set; - template class unordered_multiset; -} +#include +#include namespace pretty_print {