 Chromium Code Reviews
 Chromium Code Reviews Issue 1088843002:
  Add #include <algorithm> to code that is missing it.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 1088843002:
  Add #include <algorithm> to code that is missing it.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| Index: Source/wtf/RefPtr.h | 
| diff --git a/Source/wtf/RefPtr.h b/Source/wtf/RefPtr.h | 
| index 84dc0615c443bf16b25a6db9ee33b7d09135de67..59690234c948d17818d8c8c29cc9af52b07803ce 100644 | 
| --- a/Source/wtf/RefPtr.h | 
| +++ b/Source/wtf/RefPtr.h | 
| @@ -23,10 +23,11 @@ | 
| #ifndef WTF_RefPtr_h | 
| #define WTF_RefPtr_h | 
| -#include <algorithm> | 
| #include "wtf/HashTableDeletedValueType.h" | 
| #include "wtf/PassRefPtr.h" | 
| #include "wtf/RawPtr.h" | 
| +#include <algorithm> | 
| +#include <utility> | 
| namespace WTF { |