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 eaaebd3 commit b2eeb5dCopy full SHA for b2eeb5d
libs/openFrameworks/utils/ofFilesystem.h
@@ -106,16 +106,6 @@ class path {
106
path lexically_proximate(Args&&... args) const {
107
return path(path_.lexically_proximate(std::forward<Args>(args)...));
108
}
109
-
110
- template <typename... Args>
111
- path absolute(Args&&... args) const {
112
- return path(std::filesystem::absolute(path_, std::forward<Args>(args)...));
113
- }
114
115
116
- path canonical(Args&&... args) const {
117
- return path(std::filesystem::canonical(path_, std::forward<Args>(args)...));
118
119
120
// MARK: comparison
121
// TODO: C++20: spaceship simplification
0 commit comments