diff options
author | Hop311 <hop3114@gmail.com> | 2023-05-22 11:26:37 +0200 |
---|---|---|
committer | Hop311 <hop3114@gmail.com> | 2023-05-22 11:26:37 +0200 |
commit | 212d591c31f4200b06d38e98b23c5c2bccde1772 (patch) | |
tree | 6a9964038de099006036c693b49080bf544d3747 /src/openvic/Types.cpp | |
parent | 15e960f93ced8c94a6a45ebb2b44d0705ff7f8f6 (diff) |
Formatting / style cleanup
Diffstat (limited to 'src/openvic/Types.cpp')
-rw-r--r-- | src/openvic/Types.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/openvic/Types.cpp b/src/openvic/Types.cpp index 829770b..ab5d12a 100644 --- a/src/openvic/Types.cpp +++ b/src/openvic/Types.cpp @@ -1,12 +1,12 @@ #include "Types.hpp" #include <cassert> -#include <sstream> #include <iomanip> +#include <sstream> using namespace OpenVic; -HasIdentifier::HasIdentifier(std::string const& new_identifier) : identifier{ new_identifier } { +HasIdentifier::HasIdentifier(std::string const& new_identifier) : identifier { new_identifier } { assert(!identifier.empty()); } |