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

Unified Diff: Source/wtf/NullPtr.h

Issue 322913002: add a user-provided constructor to emulated c++11 NullPtr (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/NullPtr.h
diff --git a/Source/wtf/NullPtr.h b/Source/wtf/NullPtr.h
index b6b34e444160a8fb0054ef30f705a6ab7d7d534d..4656f9efb5efde7e5641c160c0b32b2719eebe63 100644
--- a/Source/wtf/NullPtr.h
+++ b/Source/wtf/NullPtr.h
@@ -49,6 +49,9 @@ typedef decltype(nullptr) nullptr_t;
namespace std {
class nullptr_t {
public:
+ // Required to create uninitialized const nullptr's.
Peter Kasting 2014/06/09 23:07:00 Nit: Do not use an apostrophe to make something pl
Mostyn Bramley-Moore 2014/06/09 23:33:30 Rephrased to avoid the apostrophe, hopefully it's
+ nullptr_t() { }
+
// Make nullptr convertible to any pointer type.
template<typename T> operator T*() const { return 0; }
// Make nullptr convertible to any member pointer type.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698