Fix windows noexcept build

This commit is contained in:
Jason Turner 2017-07-23 07:38:20 -06:00
parent e07cd88659
commit 3f8b697e9e

View File

@ -271,7 +271,7 @@ namespace chaiscript
struct Position
{
Position() noexcept = default;
Position() = default;
Position(std::string::const_iterator t_pos, std::string::const_iterator t_end) noexcept
: line(1), col(1), m_pos(t_pos), m_end(t_end), m_last_col(1)