Title: [92903] trunk/Source/_javascript_Core
- Revision
- 92903
- Author
- [email protected]
- Date
- 2011-08-11 19:48:06 -0700 (Thu, 11 Aug 2011)
Log Message
Unreviewed, rolling out r92880.
http://trac.webkit.org/changeset/92880
https://bugs.webkit.org/show_bug.cgi?id=66123
Breaks compile in VS2010 (Requested by jamesr_ on #webkit).
Patch by Sheriff Bot <[email protected]> on 2011-08-11
* wtf/PassRefPtr.h:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (92902 => 92903)
--- trunk/Source/_javascript_Core/ChangeLog 2011-08-12 02:11:26 UTC (rev 92902)
+++ trunk/Source/_javascript_Core/ChangeLog 2011-08-12 02:48:06 UTC (rev 92903)
@@ -1,3 +1,13 @@
+2011-08-11 Sheriff Bot <[email protected]>
+
+ Unreviewed, rolling out r92880.
+ http://trac.webkit.org/changeset/92880
+ https://bugs.webkit.org/show_bug.cgi?id=66123
+
+ Breaks compile in VS2010 (Requested by jamesr_ on #webkit).
+
+ * wtf/PassRefPtr.h:
+
2011-08-11 Mark Rowe <[email protected]>
Don't conditionalize the use of -fomit-frame-pointer on compiler version as
Modified: trunk/Source/_javascript_Core/wtf/PassRefPtr.h (92902 => 92903)
--- trunk/Source/_javascript_Core/wtf/PassRefPtr.h 2011-08-12 02:11:26 UTC (rev 92902)
+++ trunk/Source/_javascript_Core/wtf/PassRefPtr.h 2011-08-12 02:48:06 UTC (rev 92903)
@@ -64,7 +64,6 @@
template<typename T> class PassRefPtr {
public:
PassRefPtr() : m_ptr(0) { }
- PassRefPtr(std::nullptr_t) : m_ptr(0) { }
PassRefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); }
// It somewhat breaks the type system to allow transfer of ownership out of
// a const PassRefPtr. However, it makes it much easier to work with PassRefPtr
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes