File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
libs/openFrameworks/utils Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -172,26 +172,26 @@ class path {
172
172
173
173
// MARK: other operators
174
174
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) {
176
176
return path (lhs / rhs.path_ );
177
177
}
178
178
179
179
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) {
181
181
return path (lhs.path_ / rhs);
182
182
}
183
183
184
- const friend of::filesystem:: path operator /(const path& lhs, const path& rhs) {
184
+ const friend path operator /(const path& lhs, const path& rhs) {
185
185
return path (lhs.path_ / rhs.path_ );
186
186
}
187
187
188
188
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) {
190
190
return path (lhs + rhs.path_ .string ());
191
191
}
192
192
193
193
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) {
195
195
return path (lhs.path_ .string () + rhs);
196
196
}
197
197
You can’t perform that action at this time.
0 commit comments