Skip to content

Commit 10dc150

Browse files
format
1 parent 6f3711d commit 10dc150

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

libs/openFrameworks/utils/ofFilesystem.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,13 @@ class path {
121121
auto compare(Args&&... args) const { return path_.compare(std::forward<Args>(args)...); }
122122

123123
// MARK: path transformation (return *this)
124-
path& replace_extension(const path & ext = std::filesystem::path()) { path_.replace_extension(ext);
124+
path& replace_extension(const path & ext = std::filesystem::path()) {
125+
path_.replace_extension(ext);
125126
return *this;
126127
}
127-
128-
path& replace_filename(const path & ext = std::filesystem::path()) { path_.replace_filename(ext);
128+
129+
path& replace_filename(const path & ext = std::filesystem::path()) {
130+
path_.replace_filename(ext);
129131
return *this;
130132
}
131133

0 commit comments

Comments
 (0)