Skip to content

Commit 2030180

Browse files
author
Stephen Hall
committed
Fixed looser throw specifier error.
1 parent f91b5c3 commit 2030180

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*.ilk
1212
*.DS_Store
1313
*.dll
14+
*.log
1415

1516
/chesspp
1617
debug.txt

chesscpp.bin

911 KB
Binary file not shown.

src/AppState.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace chesspp
1414
: display(_display)
1515
{
1616
}
17-
virtual ~AppState()
17+
virtual ~AppState() noexcept
1818
{
1919
}
2020

src/AppStateGame.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ namespace chesspp
2020

2121
public:
2222
AppStateGame(Application *_app, sf::RenderWindow *_display);
23-
virtual ~AppStateGame()
23+
virtual ~AppStateGame() noexcept
2424
{
2525
}
2626

0 commit comments

Comments
 (0)