We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56c53b1 commit b46b44bCopy full SHA for b46b44b
2 files changed
export/include/fmu4cpp/status.hpp
@@ -8,7 +8,6 @@ typedef enum {
8
fmiDiscard,
9
fmiError,
10
fmiFatal,
11
- fmiPending, // Only used in FMI 2
12
fmiStatusUnknown // Optional: for error handling or undefined states
13
} fmiStatus;
14
export/src/fmu4cpp/fmi2.cpp
@@ -24,8 +24,6 @@ namespace {
24
return fmi2Error;
25
case fmiFatal:
26
return fmi2Fatal;
27
- case fmiPending:
28
- return fmi2Pending;
29
default:
30
31
}
0 commit comments