We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3326650 + c6b0fe1 commit 6fb5d6bCopy full SHA for 6fb5d6b
2 files changed
export/src/fmu4cpp/fmi3/fmi3.cpp
@@ -1,6 +1,7 @@
1
2
#include "fmi3Functions.h"
3
4
+#include <cstring>
5
#include <fstream>
6
#include <iostream>
7
#include <memory>
export/tests/models/BouncingBall.hpp
@@ -5,6 +5,7 @@
#include <fmu4cpp/fmu_base.hpp>
8
9
#include <iomanip>
10
#include <sstream>
11
@@ -76,7 +77,7 @@ class BouncingBall : public fmu_base {
76
77
}
78
79
void freeFmuState(void **state) override {
- delete static_cast<State*>(*state);
80
+ delete static_cast<State *>(*state);
81
*state = nullptr;
82
83
0 commit comments