diff options
Diffstat (limited to 'base/strings/string_piece.h')
-rw-r--r-- | base/strings/string_piece.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/base/strings/string_piece.h b/base/strings/string_piece.h index a433a44..818d6ca 100644 --- a/base/strings/string_piece.h +++ b/base/strings/string_piece.h @@ -30,7 +30,7 @@ #include "base/base_export.h" #include "base/basictypes.h" -#include "base/hash_tables.h" +#include "base/containers/hash_tables.h" #include "base/strings/string16.h" namespace base { @@ -409,9 +409,9 @@ BASE_EXPORT std::ostream& operator<<(std::ostream& o, // We provide appropriate hash functions so StringPiece and StringPiece16 can // be used as keys in hash sets and maps. -// This hash function is copied from base/hash_tables.h. We don't use the -// ones already defined for string and string16 directly because it would -// require the string constructors to be called, which we don't want. +// This hash function is copied from base/containers/hash_tables.h. We don't +// use the ones already defined for string and string16 directly because it +// would require the string constructors to be called, which we don't want. #define HASH_STRING_PIECE(StringPieceType, string_piece) \ std::size_t result = 0; \ for (StringPieceType::const_iterator i = string_piece.begin(); \ |