diff options
Diffstat (limited to 'boost/date_time/gregorian/greg_weekday.hpp')
-rw-r--r-- | boost/date_time/gregorian/greg_weekday.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/date_time/gregorian/greg_weekday.hpp b/boost/date_time/gregorian/greg_weekday.hpp index 60fec32297..263ef5df99 100644 --- a/boost/date_time/gregorian/greg_weekday.hpp +++ b/boost/date_time/gregorian/greg_weekday.hpp @@ -9,9 +9,9 @@ * $Date$ */ -#include "boost/date_time/constrained_value.hpp" -#include "boost/date_time/date_defs.hpp" -#include "boost/date_time/compiler_config.hpp" +#include <boost/date_time/constrained_value.hpp> +#include <boost/date_time/date_defs.hpp> +#include <boost/date_time/compiler_config.hpp> #include <stdexcept> #include <string> @@ -29,7 +29,7 @@ namespace gregorian { //! Exception that flags that a weekday number is incorrect - struct bad_weekday : public std::out_of_range + struct BOOST_SYMBOL_VISIBLE bad_weekday : public std::out_of_range { bad_weekday() : std::out_of_range(std::string("Weekday is out of range 0..6")) {} }; |