Skip to content

Commit e8145c6

Browse files
consistent naming
1 parent 6f53052 commit e8145c6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

libs/openFrameworks/utils/ofFilesystem.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,26 +172,26 @@ class path {
172172

173173
// MARK: other operators
174174
template <typename LHS>
175-
const friend of::filesystem::path operator/(const LHS& lhs, const path& rhs) {
175+
const friend path operator/(const LHS& lhs, const path& rhs) {
176176
return path(lhs / rhs.path_);
177177
}
178178

179179
template <typename RHS>
180-
const friend of::filesystem::path operator/(const path& lhs, const RHS& rhs) {
180+
const friend path operator/(const path& lhs, const RHS& rhs) {
181181
return path(lhs.path_ / rhs);
182182
}
183183

184-
const friend of::filesystem::path operator/(const path& lhs, const path& rhs) {
184+
const friend path operator/(const path& lhs, const path& rhs) {
185185
return path(lhs.path_ / rhs.path_);
186186
}
187187

188188
template <typename LHS>
189-
const friend of::filesystem::path operator+(const LHS& lhs, const path& rhs) {
189+
const friend path operator+(const LHS& lhs, const path& rhs) {
190190
return path(lhs + rhs.path_.string());
191191
}
192192

193193
template <typename RHS>
194-
const friend of::filesystem::path operator+(const path& lhs, const RHS& rhs) {
194+
const friend path operator+(const path& lhs, const RHS& rhs) {
195195
return path(lhs.path_.string() + rhs);
196196
}
197197

0 commit comments

Comments
 (0)