Skip to content

Commit

Permalink
Add return keyword to the other places where it is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
codemercenary committed Apr 26, 2016
1 parent af3a21e commit 2239518
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/autowiring/C++11/filesystem.h
Expand Up @@ -40,9 +40,9 @@ namespace std {
awfsnamespace::wpath(_Ptr)
{}

basic_path& operator=(basic_path&& _Right) { *(awfsnamespace::wpath*)this = std::move(_Right); }
basic_path& operator=(basic_path&& _Right) { return *(awfsnamespace::wpath*)this = std::move(_Right); }
basic_path& operator=(const string_type& _Str) { return *(awfsnamespace::wpath*)this = _Str; }
basic_path& operator=(const wchar_t* _Ptr) { *(awfsnamespace::wpath*)this = _Ptr; }
basic_path& operator=(const wchar_t* _Ptr) { return *(awfsnamespace::wpath*)this = _Ptr; }

path extension(void) const {
return{ awfsnamespace::wpath::extension() };
Expand Down

0 comments on commit 2239518

Please sign in to comment.