 Chromium Code Reviews
 Chromium Code Reviews Issue 40883002:
  Remove virtual destructor for Pair class  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 40883002:
  Remove virtual destructor for Pair class  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| Index: Source/core/css/Pair.h | 
| diff --git a/Source/core/css/Pair.h b/Source/core/css/Pair.h | 
| index 2c1940f0b5267cd1b4aeda31a481b5c1360edd85..dd70239f71eae2dfd10029c4db58cbeaca0f04c0 100644 | 
| --- a/Source/core/css/Pair.h | 
| +++ b/Source/core/css/Pair.h | 
| @@ -44,7 +44,6 @@ public: | 
| { | 
| return adoptRef(new Pair(first, second, identicalValuesPolicy)); | 
| } | 
| - virtual ~Pair() { } | 
| CSSPrimitiveValue* first() const { return m_first.get(); } | 
| CSSPrimitiveValue* second() const { return m_second.get(); } |