| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // In most .h files, we would rather include a declaration of an stl | 5 // In most .h files, we would rather include a declaration of an stl |
| 6 // rather than including the appropriate stl h file (which brings in | 6 // rather than including the appropriate stl h file (which brings in |
| 7 // lots of noise). For many STL classes this is ok (eg pair), but for | 7 // lots of noise). For many STL classes this is ok (eg pair), but for |
| 8 // some it's really annoying. We define those here, so you can | 8 // some it's really annoying. We define those here, so you can |
| 9 // just include this file instead of having to deal with the annoyance. | 9 // just include this file instead of having to deal with the annoyance. |
| 10 // | 10 // |
| 11 // Most of the annoyance, btw, has to do with the default allocator. | 11 // Most of the annoyance, btw, has to do with the default allocator. |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 using msvchash::hash_multiset; | 98 using msvchash::hash_multiset; |
| 99 | 99 |
| 100 #else | 100 #else |
| 101 #define hash_map map | 101 #define hash_map map |
| 102 #define hash_set set | 102 #define hash_set set |
| 103 #endif | 103 #endif |
| 104 | 104 |
| 105 using namespace std; | 105 using namespace std; |
| 106 | 106 |
| 107 #endif /* #ifdef _STL_DECL_MSVC_H */ | 107 #endif /* #ifdef _STL_DECL_MSVC_H */ |
| OLD | NEW |