diff --git a/src/common/model/path.h b/src/common/model/path.h index 1790fc1c..cda01bd5 100644 --- a/src/common/model/path.h +++ b/src/common/model/path.h @@ -130,8 +130,7 @@ public: void pop_back() { - if (!path_.empty()) - { + if (!path_.empty()) { path_.pop_back(); } } diff --git a/src/util/util.h b/src/util/util.h index 03c853f1..96e39fbf 100644 --- a/src/util/util.h +++ b/src/util/util.h @@ -162,8 +162,7 @@ template <> bool starts_with( const std::filesystem::path &path, const std::filesystem::path &prefix); -template <> -bool starts_with(const std::string &s, const std::string &prefix); +template <> bool starts_with(const std::string &s, const std::string &prefix); template bool ends_with(const T &value, const T &suffix);