diff options
Diffstat (limited to 'devel/ice/files/patch-cpp-src-slice2freeze-Main.cpp')
-rw-r--r-- | devel/ice/files/patch-cpp-src-slice2freeze-Main.cpp | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/devel/ice/files/patch-cpp-src-slice2freeze-Main.cpp b/devel/ice/files/patch-cpp-src-slice2freeze-Main.cpp deleted file mode 100644 index 64281d740f03..000000000000 --- a/devel/ice/files/patch-cpp-src-slice2freeze-Main.cpp +++ /dev/null @@ -1,55 +0,0 @@ ---- cpp.orig/src/slice2freeze/Main.cpp 2011-06-15 21:43:58.000000000 +0200 -+++ cpp/src/slice2freeze/Main.cpp 2012-09-10 11:43:58.000000000 +0200 -@@ -28,7 +28,7 @@ using namespace Slice; - namespace - { - --IceUtil::Mutex* mutex = 0; -+IceUtil::Mutex* mtx = 0; - bool interrupted = false; - - class Init -@@ -37,13 +37,13 @@ public: - - Init() - { -- mutex = new IceUtil::Mutex; -+ mtx = new IceUtil::Mutex; - } - - ~Init() - { -- delete mutex; -- mutex = 0; -+ delete mtx; -+ mtx = 0; - } - }; - -@@ -56,7 +56,7 @@ string ICE_ENCODING_COMPARE = "Freeze::IceEncodingCompare"; - void - interruptedCallback(int signal) - { -- IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mutex); -+ IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mtx); - - interrupted = true; - } -@@ -1995,7 +1995,7 @@ compile(int argc, char* argv[]) - } - - { -- IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mutex); -+ IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mtx); - - if(interrupted) - { -@@ -2042,7 +2042,7 @@ compile(int argc, char* argv[]) - u->destroy(); - - { -- IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mutex); -+ IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mtx); - - if(interrupted) - { |