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 20811e3 commit 9a19343Copy full SHA for 9a19343
1 file changed
libs/openFrameworks/utils/ofFilesystemPath.h
@@ -6,14 +6,17 @@
6
#include <iostream>
7
#include <utility>
8
9
-// general approach to return type:
10
-// - use `path` and path &` to wrap std:: return values
11
-// - use bool when bool (for self-documenting API)
12
-// - use (const) auto (inheriting from std:: implementation) for others
13
-
14
namespace of::filesystem {
15
16
class path {
+
+ // as per https://github.com/cplusplus/draft/releases/tag/n4917
+ // general approach to return type:
+ // - use `path` and path &` to wrap std:: return values
17
+ // - use bool when bool (for self-documenting API)
18
+ // - use (const) auto (inheriting from std:: implementation) for others
19
20
private:
21
std::filesystem::path path_; // simple composition
22
0 commit comments