Skip to content

Commit 5479de4

Browse files
feat(ofFilesystemPath): add wchar_t * constructor
1 parent 8911f00 commit 5479de4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

libs/openFrameworks/utils/ofFilesystemPath.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class path {
2727
path(std::filesystem::path&& p) noexcept : path_(std::move(p)) {}
2828
path(const std::string& s) : path_(s) {}
2929
path(const char* s) : path_(s) {}
30+
path(const wchar_t* s) : path_(s) {}
3031
path(const path& other) = default;
3132
path& operator=(const path& other) = default;
3233
path(path&& other) noexcept = default;

0 commit comments

Comments
 (0)