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 e8145c6 commit 2c35f2fCopy full SHA for 2c35f2f
libs/openFrameworks/utils/ofFilesystem.h
@@ -121,6 +121,9 @@ class path {
121
template <typename... Args>
122
auto compare(Args&&... args) const { return path_.compare(std::forward<Args>(args)...); }
123
124
+ void swap(path & other) noexcept { path_.swap(other.path_); }
125
+
126
127
// MARK: path transformation (return *this)
128
path& replace_extension(const path & ext = std::filesystem::path()) {
129
path_.replace_extension(ext);
0 commit comments