Remove a superfluous qualifier on an inline method.

Fixes
..\..\third_party\webrtc/base/stringutils.h(295,49) :  warning(clang): extra qualification on member "empty_str" [-Wmicrosoft]

No behavior change, but makes the code more standards-conformant.

BUG=chromium:505296

Review URL: https://codereview.webrtc.org/1228193002

Cr-Commit-Position: refs/heads/master@{#9562}
This commit is contained in:
thakis
2015-07-09 16:45:45 -07:00
committed by Commit bot
parent 50cf10d82a
commit 97f44e1bf6

View File

@ -292,7 +292,7 @@ struct Traits<char> {
template<> template<>
struct Traits<wchar_t> { struct Traits<wchar_t> {
typedef std::wstring string; typedef std::wstring string;
inline static const wchar_t* Traits<wchar_t>::empty_str() { return L""; } inline static const wchar_t* empty_str() { return L""; }
}; };
#endif // WEBRTC_WIN #endif // WEBRTC_WIN