Skip to content

Commit cc1e05b

Browse files
committed
missing include
1 parent 0ae06cd commit cc1e05b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

export/tests/models/BouncingBall.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
#include <fmu4cpp/fmu_base.hpp>
77

8+
#include <cstring>
89
#include <iomanip>
910
#include <sstream>
1011

@@ -76,7 +77,7 @@ class BouncingBall : public fmu_base {
7677
}
7778

7879
void freeFmuState(void **state) override {
79-
delete static_cast<State*>(*state);
80+
delete static_cast<State *>(*state);
8081
*state = nullptr;
8182
}
8283

0 commit comments

Comments
 (0)