Skip to content

Commit

Permalink
Merge pull request boostorg#105 from MarcelRaad/extra_semi
Browse files Browse the repository at this point in the history
Fix -Wextra-semi clang warnings
  • Loading branch information
Lastique authored Feb 25, 2019
2 parents b0a0fde + 1cf1785 commit e49775e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/filesystem/path.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ namespace path_detail // intentionally don't use filesystem::detail to not bring
const std::string generic_string() const { return generic_path().string(); }
const std::string generic_string(const codecvt_type& cvt) const { return generic_path().string(cvt); }
const std::wstring generic_wstring() const { return generic_path().wstring(); }
const std::wstring generic_wstring(const codecvt_type&) const { return generic_wstring(); };
const std::wstring generic_wstring(const codecvt_type&) const { return generic_wstring(); }
# else // BOOST_POSIX_API
// On POSIX-like systems, the generic format is the same as the native format
const std::string& generic_string() const { return m_pathname; }
Expand Down

0 comments on commit e49775e

Please sign in to comment.