Updated code for inclusion of stdexcept

This commit is contained in:
Edward Diener
2016-11-10 13:08:08 -05:00
parent 820699b385
commit 436e153c3e
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@
#include <ostream> // for std::endl, std::ostream #include <ostream> // for std::endl, std::ostream
#include <streambuf> // for std::streambuf #include <streambuf> // for std::streambuf
#include <string> // for std::string #include <string> // for std::string
#if defined(BOOST_GCC) #if defined(BOOST_GCC) || (defined(BOOST_CLANG) && defined(BOOST_GNU_STDLIB))
#include <stdexcept> #include <stdexcept>
#endif #endif

View File

@ -20,7 +20,7 @@
#include <istream> // for std::iostream #include <istream> // for std::iostream
#include <locale> // for std::locale, std::numpunct #include <locale> // for std::locale, std::numpunct
#include <sstream> // for std::stringstream, etc. #include <sstream> // for std::stringstream, etc.
#if defined(BOOST_GCC) #if defined(BOOST_GCC) || (defined(BOOST_CLANG) && defined(BOOST_GNU_STDLIB))
#include <stdexcept> #include <stdexcept>
#endif #endif