| Index: tools/gn/source_file.h
|
| diff --git a/tools/gn/source_file.h b/tools/gn/source_file.h
|
| index 7d07a53a750d2d0c91827ab447a4b93c5146cff5..3b6dbfb8ba7698dd5323caa795c1d0057aa548ce 100644
|
| --- a/tools/gn/source_file.h
|
| +++ b/tools/gn/source_file.h
|
| @@ -90,18 +90,12 @@ class SourceFile {
|
|
|
| namespace BASE_HASH_NAMESPACE {
|
|
|
| -#if defined(COMPILER_GCC)
|
| template<> struct hash<SourceFile> {
|
| std::size_t operator()(const SourceFile& v) const {
|
| hash<std::string> h;
|
| return h(v.value());
|
| }
|
| };
|
| -#elif defined(COMPILER_MSVC)
|
| -inline size_t hash_value(const SourceFile& v) {
|
| - return hash_value(v.value());
|
| -}
|
| -#endif // COMPILER...
|
|
|
| } // namespace BASE_HASH_NAMESPACE
|
|
|
|
|