File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ namespace std {
27
27
path (const string_type& _Str) :
28
28
awfsnamespace::wpath (_Str)
29
29
{}
30
+ path (const awfsnamespace::wpath& _Right) :
31
+ awfsnamespace::wpath (_Right)
32
+ {}
30
33
path (const path& _Right) :
31
34
awfsnamespace::wpath (_Right)
32
35
{}
@@ -37,9 +40,9 @@ namespace std {
37
40
awfsnamespace::wpath (_Ptr)
38
41
{}
39
42
40
- basic_path& operator =(basic_path&& _Right) { *(awfsnamespace::wpath*)this = std::move (_Right); }
41
- basic_path& operator =(const string_type& _Str) { *(awfsnamespace::wpath*)this = _Str; }
42
- basic_path& operator =(const wchar_t * _Ptr) { *(awfsnamespace::wpath*)this = _Ptr; }
43
+ basic_path& operator =(basic_path&& _Right) { return *(awfsnamespace::wpath*)this = std::move (_Right); }
44
+ basic_path& operator =(const string_type& _Str) { return *(awfsnamespace::wpath*)this = _Str; }
45
+ basic_path& operator =(const wchar_t * _Ptr) { return *(awfsnamespace::wpath*)this = _Ptr; }
43
46
44
47
path extension (void ) const {
45
48
return { awfsnamespace::wpath::extension () };
You can’t perform that action at this time.
0 commit comments