From c17680f7613ffb25bbc0b23df42d5009884b15f2 Mon Sep 17 00:00:00 2001 From: Sebastian Junges Date: Thu, 7 May 2020 18:19:29 -0700 Subject: [PATCH] fix code that only compiles on macos --- src/core/counterexample.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/counterexample.cpp b/src/core/counterexample.cpp index c5e7b4f..1123157 100644 --- a/src/core/counterexample.cpp +++ b/src/core/counterexample.cpp @@ -9,7 +9,7 @@ using namespace storm::counterexamples; // Define python bindings void define_counterexamples(py::module& m) { - using FlatSet = boost::container::flat_set, boost::container::new_allocator>; + using FlatSet = boost::container::flat_set, boost::container::new_allocator>; py::class_(m, "FlatSet", "Container to pass to program") .def(py::init<>())