Skip to content

Commit c0bdd5a

Browse files
committed
Merge branch 'master' of git://github.com/naraku9333/ChessPlusPlus
2 parents c95c90d + d11fc0d commit c0bdd5a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Exception.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ namespace chesspp
1010
{
1111
using std::exception::what;
1212
public:
13-
exception() throw() {}
14-
virtual ~exception() throw() {};
15-
exception(const exception &) throw() {}
13+
exception() {}
14+
virtual ~exception() {};
15+
exception(const exception &) {}
1616

17-
exception(const std::string &_e) throw() : e(_e) {}
17+
exception(const std::string &_e) : e(_e) {}
1818
virtual const char *what() { return e.c_str(); }
1919

2020
private:

0 commit comments

Comments
 (0)