Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
skim0119 committed Aug 8, 2024
1 parent b3cc4f8 commit a674997
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/Systems/CosseratRods/Initializers/Parameter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ namespace elastica {
// Clang-Tidy: Single-argument constructors must be marked explicit to avoid
// unintentional implicit conversions
Parameter() = delete;
/*explicit*/ Parameter(type t) : t_(std::move(t)){}; /* NOLINT */
/*explicit*/ Parameter(type t) : t_(std::move(t)) {}; /* NOLINT */
// /*explicit*/ Parameter(type&& t) : t_(std::move(t)){}; /* NOLINT */
~Parameter() = default;
// Parameter(Parameter&& other) noexcept : t_(std::move(other.t_)) {}
Expand Down Expand Up @@ -81,4 +81,4 @@ namespace elastica {
};
//****************************************************************************

} // namespace Options
} // namespace elastica

0 comments on commit a674997

Please sign in to comment.