Skip to content

Commit 4d5949c

Browse files
committed
Remember to turn on assertions for Python
1 parent 23f293a commit 4d5949c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/games/game.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,8 @@ class GameRep : public std::enable_shared_from_this<GameRep> {
967967
virtual void BuildComputedValues() const {}
968968
};
969969

970-
#include <assert.h>
970+
#undef NDEBUG
971+
#include <cassert>
971972

972973
class GameRep::Infosets {
973974
public:

0 commit comments

Comments
 (0)