Skip to content

Commit 6fb5d6b

Browse files
committed
Merge branch 'master' into examples
2 parents 3326650 + c6b0fe1 commit 6fb5d6b

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

export/src/fmu4cpp/fmi3/fmi3.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
#include "fmi3Functions.h"
33

4+
#include <cstring>
45
#include <fstream>
56
#include <iostream>
67
#include <memory>

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)