Removed throw() specifier in Exception (I don't remember putting it in). This may solve a gcc error (I haven't tested it yet) or it may break it further.

This commit is contained in:
jbeder
2009-01-01 20:14:32 +00:00
parent 51ea36e444
commit 4cebe50a9f
3 changed files with 4 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ namespace YAML
public:
Exception(int line_, int column_, const std::string& msg_)
: line(line_), column(column_), msg(msg_) {}
virtual ~Exception() throw () {}
virtual ~Exception() {}
int line, column;
std::string msg;