Skip to content

Commit

Permalink
Stylefixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bugdea1er committed Jan 27, 2024
1 parent bda6622 commit bad688a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/tmp/path.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class path {

public:
/// Creates a path from a moved @p other
path(path&& other) noexcept: p(std::move(other.p)) {
path(path&& other) noexcept : p(std::move(other.p)) {
other.p.clear();
}

Expand Down

0 comments on commit bad688a

Please sign in to comment.