Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(412)

Unified Diff: Source/core/css/Pair.h

Issue 22887044: [oilpan] Make the oilpan branch build on Mac. (Closed) Base URL: svn://svn.chromium.org/blink/branches/oilpan
Patch Set: Add FIXME. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/MediaQueryExp.cpp ('k') | Source/core/css/SelectorFilter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/Pair.h
diff --git a/Source/core/css/Pair.h b/Source/core/css/Pair.h
index 5cc85fc36c50bcef2ab6b5b4d609abfa23a4c7d3..2c3aaa20c81827ca97a46b85844f11dc432643e2 100644
--- a/Source/core/css/Pair.h
+++ b/Source/core/css/Pair.h
@@ -69,7 +69,7 @@ public:
bool hasVariableReference() const { return first()->hasVariableReference() || second()->hasVariableReference(); }
private:
- Pair() : m_first(0), m_second(0) { }
+ Pair() { }
Pair(const Handle<CSSPrimitiveValue>& first, const Handle<CSSPrimitiveValue>& second)
: m_first(first), m_second(second) { }
« no previous file with comments | « Source/core/css/MediaQueryExp.cpp ('k') | Source/core/css/SelectorFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698