Skip to content

Commit b2eeb5d

Browse files
absolute and canonical not in ::path
1 parent eaaebd3 commit b2eeb5d

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

libs/openFrameworks/utils/ofFilesystem.h

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -106,16 +106,6 @@ class path {
106106
path lexically_proximate(Args&&... args) const {
107107
return path(path_.lexically_proximate(std::forward<Args>(args)...));
108108
}
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-
template <typename... Args>
116-
path canonical(Args&&... args) const {
117-
return path(std::filesystem::canonical(path_, std::forward<Args>(args)...));
118-
}
119109

120110
// MARK: comparison
121111
// TODO: C++20: spaceship simplification

0 commit comments

Comments
 (0)