summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profile.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/profile.h')
-rw-r--r--chrome/browser/profile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/profile.h b/chrome/browser/profile.h
index 3f3a127..a305888 100644
--- a/chrome/browser/profile.h
+++ b/chrome/browser/profile.h
@@ -487,8 +487,8 @@ namespace __gnu_cxx {
template<>
struct hash<Profile*> {
- size_t operator()(Profile* const& p) const {
- return std::tr1::hash<long>()(reinterpret_cast<long>(p));
+ std::size_t operator()(Profile* const& p) const {
+ return reinterpret_cast<std::size_t>(p);
}
};