Index: base/optional.h |
diff --git a/base/optional.h b/base/optional.h |
index c7eae67bf6ac7677b2600f72b6e98e6fa771b2c3..27241f71c7ed2333b54942e5bebb45dddc8b911e 100644 |
--- a/base/optional.h |
+++ b/base/optional.h |
@@ -26,7 +26,7 @@ const in_place_t in_place{}; |
// Specification: |
// http://en.cppreference.com/w/cpp/experimental/optional/nullopt |
-const nullopt_t nullopt(0); |
+// const nullopt_t nullopt(0); |
Yoav Weiss
2016/03/29 22:05:45
should be deleted?
Marijn Kruisselbrink
2016/04/20 01:45:03
This was an artifact of me basing this CL on a ver
|
// base::Optional is a Chromium version of the C++ library experimental optional |
// class: http://en.cppreference.com/w/cpp/experimental/optional/optional |