package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
909 B
27 lines
909 B
3 years ago
|
diff --git a/include/fmi4cpp/fmi2/xml/model_variables.hpp b/include/fmi4cpp/fmi2/xml/model_variables.hpp
|
||
|
index 8e3b342..cd70e62 100644
|
||
|
--- a/include/fmi4cpp/fmi2/xml/model_variables.hpp
|
||
|
+++ b/include/fmi4cpp/fmi2/xml/model_variables.hpp
|
||
|
@@ -41,8 +41,6 @@ private:
|
||
|
const std::vector<scalar_variable> variables_;
|
||
|
|
||
|
public:
|
||
|
- model_variables();
|
||
|
-
|
||
|
explicit model_variables(std::vector<scalar_variable> variables);
|
||
|
|
||
|
[[nodiscard]] size_t size() const;
|
||
|
diff --git a/src/fmi4cpp/fmi2/xml/model_variables.cpp b/src/fmi4cpp/fmi2/xml/model_variables.cpp
|
||
|
index d262aa9..a6643f7 100644
|
||
|
--- a/src/fmi4cpp/fmi2/xml/model_variables.cpp
|
||
|
+++ b/src/fmi4cpp/fmi2/xml/model_variables.cpp
|
||
|
@@ -30,8 +30,6 @@
|
||
|
|
||
|
using namespace fmi4cpp::fmi2;
|
||
|
|
||
|
-model_variables::model_variables() = default;
|
||
|
-
|
||
|
model_variables::model_variables(std::vector<scalar_variable> variables)
|
||
|
: variables_(std::move(variables))
|
||
|
{}
|