From cf27db7cdfc83c602e9b717d1075472a79d435b3 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 13 May 2010 16:22:30 +0200 Subject: clean --- xulrunner-remi.patch | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 xulrunner-remi.patch diff --git a/xulrunner-remi.patch b/xulrunner-remi.patch deleted file mode 100644 index 038058e..0000000 --- a/xulrunner-remi.patch +++ /dev/null @@ -1,30 +0,0 @@ ---- mozilla-1.9.2/layout/generic/nsFrame.h.orig 2009-11-06 19:29:14.000000000 +0100 -+++ mozilla-1.9.2/layout/generic/nsFrame.h 2009-11-06 19:30:54.000000000 +0100 -@@ -153,23 +153,14 @@ - friend nsIFrame* NS_NewEmptyFrame(nsIPresShell* aShell, - nsStyleContext* aContext); - -+ -+ // Set this public as in 1.9.1 ! -+ void operator delete(void* aPtr, size_t sz); -+ - private: - // Left undefined; nsFrame objects are never allocated from the heap. - void* operator new(size_t sz) CPP_THROW_NEW; - --protected: -- // Overridden to prevent the global delete from being called, since -- // the memory came out of an arena instead of the heap. -- // -- // Ideally this would be private and undefined, like the normal -- // operator new. Unfortunately, the C++ standard requires an -- // overridden operator delete to be accessible to any subclass that -- // defines a virtual destructor, so we can only make it protected; -- // worse, some C++ compilers will synthesize calls to this function -- // from the "deleting destructors" that they emit in case of -- // delete-expressions, so it can't even be undefined. -- void operator delete(void* aPtr, size_t sz); -- - public: - - // nsQueryFrame -- cgit