Skip to content

Commit

Permalink
default constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Oct 2, 2024
1 parent d5a6e6a commit 124f4a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/micm/solver/state.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,9 @@ namespace micm
/// @param time solving time
void PrintState(double time);

private:
/// @brief Default constructor cannot be used
State();
/// @brief Default constructor
/// Only defined to be used to create default values in types, but a default constructed state is not useable
State() : {};
};

} // namespace micm
Expand Down

0 comments on commit 124f4a0

Please sign in to comment.