Skip to content

Commit 1dcee0d

Browse files
committed
Fixed compilation issues on MinGW
Added missing <cstdlib> includes which caused compilation errors on MinGW 5.3.0.
1 parent 38f8f5c commit 1dcee0d

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

src/cegis/cegis-util/cbmc_runner.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Author: Daniel Kroening, kroening@kroening.com
77
88
\*******************************************************************/
99

10+
#include <cstdlib>
11+
1012
#include <util/config.h>
1113
#include <util/substitute.h>
1214

src/cegis/genetic/dynamic_test_runner_helper.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Author: Daniel Kroening, kroening@kroening.com
1212
#endif
1313

1414
#include <cassert>
15+
#include <cstdlib>
1516
#include <fstream>
1617

1718
#include <util/config.h>

src/cegis/jsa/learn/extract_candidate.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Author: Daniel Kroening, kroening@kroening.com
77
88
\*******************************************************************/
99

10+
#include <cstdlib>
11+
1012
#include <util/bv_arithmetic.h>
1113
#include <goto-programs/goto_functions.h>
1214
#include <goto-programs/goto_trace.h>

0 commit comments

Comments
 (0)