We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f3711d commit 10dc150Copy full SHA for 10dc150
libs/openFrameworks/utils/ofFilesystem.h
@@ -121,11 +121,13 @@ class path {
121
auto compare(Args&&... args) const { return path_.compare(std::forward<Args>(args)...); }
122
123
// MARK: path transformation (return *this)
124
- path& replace_extension(const path & ext = std::filesystem::path()) { path_.replace_extension(ext);
+ path& replace_extension(const path & ext = std::filesystem::path()) {
125
+ path_.replace_extension(ext);
126
return *this;
127
}
-
128
- path& replace_filename(const path & ext = std::filesystem::path()) { path_.replace_filename(ext);
+
129
+ path& replace_filename(const path & ext = std::filesystem::path()) {
130
+ path_.replace_filename(ext);
131
132
133
0 commit comments