diff options
Diffstat (limited to 'base/file_path.h')
-rw-r--r-- | base/file_path.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/base/file_path.h b/base/file_path.h index 5fe8cda..17653d1 100644 --- a/base/file_path.h +++ b/base/file_path.h @@ -122,13 +122,9 @@ class FilePath { return *this; } - bool operator==(const FilePath& that) const { - return path_ == that.path_; - } + bool operator==(const FilePath& that) const; - bool operator!=(const FilePath& that) const { - return path_ != that.path_; - } + bool operator!=(const FilePath& that) const; // Required for some STL containers and operations bool operator<(const FilePath& that) const { |