Chromium Code Reviews| Index: Source/wtf/RawPtr.h |
| diff --git a/Source/wtf/RawPtr.h b/Source/wtf/RawPtr.h |
| index 758bb12c14d711e34251e5366862a1f31ff9b672..4804ee31c9d3fb9de893859acdd54d5aa3bfc835 100644 |
| --- a/Source/wtf/RawPtr.h |
| +++ b/Source/wtf/RawPtr.h |
| @@ -31,11 +31,10 @@ |
| #ifndef WTF_RawPtr_h |
| #define WTF_RawPtr_h |
| -#include <algorithm> |
| -#include <stdint.h> |
| - |
| #include "wtf/HashTableDeletedValueType.h" |
| #include "wtf/TypeTraits.h" |
| +#include <algorithm> // For std::swap |
|
Nico
2015/04/16 21:16:56
remove comment
|
| +#include <stdint.h> |
|
Nico
2015/04/16 21:16:56
add <utility> :-/
|
| // RawPtr is a simple wrapper for a raw pointer that provides the |
| // interface (get, clear) of other pointer types such as RefPtr, |