From b00f5511b300f615a0e7c10a7503ec0ac89486cc Mon Sep 17 00:00:00 2001 From: ronag Date: Fri, 11 Feb 2011 11:07:09 +0000 Subject: [PATCH] 2.0.0.2: Disabled captured exceptions in order to allow exact rethrow. git-svn-id: https://casparcg.svn.sourceforge.net/svnroot/casparcg/server/branches/2.0.0.2@461 362d55ac-95cf-4e76-9f9a-cbaa9c17b72d --- common/common.vcxproj | 8 ++++---- core/core.vcxproj | 8 ++++---- core/producer/layer.h | 2 +- mixer/mixer.vcxproj | 8 ++++---- protocol/protocol.vcxproj | 8 ++++---- shell/shell.vcxproj | 8 ++++---- test/test.vcxproj | 4 ++-- 7 files changed, 23 insertions(+), 23 deletions(-) diff --git a/common/common.vcxproj b/common/common.vcxproj index 3eaadf5cb..8a22ae29f 100644 --- a/common/common.vcxproj +++ b/common/common.vcxproj @@ -93,7 +93,7 @@ Use Level3 Disabled - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_ASSERT=1;SFML_DYNAMIC;_DEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_ASSERT=1;SFML_DYNAMIC;_DEBUG;_LIB;%(PreprocessorDefinitions) true true true @@ -116,7 +116,7 @@ true - TBB_USE_CAPTURED_EXCEPTION=1;SFML_DYNAMIC;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;SFML_DYNAMIC;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) Async StreamingSIMDExtensions2 true @@ -145,7 +145,7 @@ true - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_THREADING_TOOLS=1;SFML_DYNAMIC;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_THREADING_TOOLS=1;SFML_DYNAMIC;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) Async StreamingSIMDExtensions2 true @@ -174,7 +174,7 @@ true - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_ASSERT=1;TBB_USE_PERFORMANCE_WARNINGS=1;SFML_DYNAMIC;NDEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_ASSERT=1;TBB_USE_PERFORMANCE_WARNINGS=1;SFML_DYNAMIC;NDEBUG;_LIB;%(PreprocessorDefinitions) Async StreamingSIMDExtensions2 true diff --git a/core/core.vcxproj b/core/core.vcxproj index abdac6645..426300790 100644 --- a/core/core.vcxproj +++ b/core/core.vcxproj @@ -108,7 +108,7 @@ true Level3 EditAndContinue - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_ASSERT=1;_DEBUG;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_ASSERT=1;_DEBUG;%(PreprocessorDefinitions) true true Fast @@ -154,7 +154,7 @@ Level4 ProgramDatabase true - TBB_USE_CAPTURED_EXCEPTION=1;NDEBUG;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;NDEBUG;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) true true true @@ -208,7 +208,7 @@ Level4 ProgramDatabase true - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_THREADING_TOOLS=1;NDEBUG;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_THREADING_TOOLS=1;NDEBUG;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) false true true @@ -262,7 +262,7 @@ Level4 ProgramDatabase true - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_ASSERT=1;TBB_USE_PERFORMANCE_WARNINGS=1;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_ASSERT=1;TBB_USE_PERFORMANCE_WARNINGS=1;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) false true true diff --git a/core/producer/layer.h b/core/producer/layer.h index 41cc74f1d..83878288a 100644 --- a/core/producer/layer.h +++ b/core/producer/layer.h @@ -16,7 +16,7 @@ class layer : boost::noncopyable public: layer(); // nothrow layer(layer&& other); // nothrow - ~layer(); + ~layer(); // nothrow layer& operator=(layer&& other); // nothrow //NOTE: swap is thread-safe on "other", NOT on "this". diff --git a/mixer/mixer.vcxproj b/mixer/mixer.vcxproj index 1ea472016..8f49a0565 100644 --- a/mixer/mixer.vcxproj +++ b/mixer/mixer.vcxproj @@ -189,7 +189,7 @@ Use Level3 Disabled - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_ASSERT=1;_DEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_ASSERT=1;_DEBUG;_LIB;%(PreprocessorDefinitions) MultiThreadedDebugDLL Fast @@ -205,7 +205,7 @@ MaxSpeed true true - TBB_USE_CAPTURED_EXCEPTION=1;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) AnySuitable Speed MultiThreadedDLL @@ -225,7 +225,7 @@ MaxSpeed true true - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_THREADING_TOOLS=1;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_THREADING_TOOLS=1;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) Disabled false MultiThreadedDLL @@ -245,7 +245,7 @@ Disabled true true - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_ASSERT=1;TBB_USE_PERFORMANCE_WARNINGS=1;NDEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_ASSERT=1;TBB_USE_PERFORMANCE_WARNINGS=1;NDEBUG;_LIB;%(PreprocessorDefinitions) true AnySuitable Speed diff --git a/protocol/protocol.vcxproj b/protocol/protocol.vcxproj index b1ae06f02..ea23657bd 100644 --- a/protocol/protocol.vcxproj +++ b/protocol/protocol.vcxproj @@ -177,7 +177,7 @@ Use Level3 Disabled - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_ASSERT=1;_DEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_ASSERT=1;_DEBUG;_LIB;%(PreprocessorDefinitions) MultiThreadedDebugDLL Fast @@ -193,7 +193,7 @@ MaxSpeed true true - TBB_USE_CAPTURED_EXCEPTION=1;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) AnySuitable Speed MultiThreadedDLL @@ -213,7 +213,7 @@ MaxSpeed true true - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_THREADING_TOOLS=1;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_THREADING_TOOLS=1;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) Disabled false MultiThreadedDLL @@ -233,7 +233,7 @@ Disabled true true - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_ASSERT=1;TBB_USE_PERFORMANCE_WARNINGS=1;NDEBUG;_LIB;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_ASSERT=1;TBB_USE_PERFORMANCE_WARNINGS=1;NDEBUG;_LIB;%(PreprocessorDefinitions) true Speed false diff --git a/shell/shell.vcxproj b/shell/shell.vcxproj index ccd1ac577..2386166a3 100644 --- a/shell/shell.vcxproj +++ b/shell/shell.vcxproj @@ -155,7 +155,7 @@ true Level3 EditAndContinue - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_ASSERT=1;_DEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_ASSERT=1;_DEBUG;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) true true Fast @@ -201,7 +201,7 @@ Level3 ProgramDatabase true - TBB_USE_CAPTURED_EXCEPTION=1;NDEBUG;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;NDEBUG;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) true true Fast @@ -255,7 +255,7 @@ Level3 ProgramDatabase true - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_THREADING_TOOLS=1;NDEBUG;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_THREADING_TOOLS=1;NDEBUG;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) false true Fast @@ -309,7 +309,7 @@ Level3 ProgramDatabase true - TBB_USE_CAPTURED_EXCEPTION=1;TBB_USE_ASSERT=1;TBB_USE_PERFORMANCE_WARNINGS=1;NDEBUG;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;TBB_USE_ASSERT=1;TBB_USE_PERFORMANCE_WARNINGS=1;NDEBUG;_VC80_UPGRADE=0x0710;%(PreprocessorDefinitions) false true Fast diff --git a/test/test.vcxproj b/test/test.vcxproj index fa6e96f4f..fbe144a0e 100644 --- a/test/test.vcxproj +++ b/test/test.vcxproj @@ -76,7 +76,7 @@ NotUsing Level3 Disabled - TBB_USE_CAPTURED_EXCEPTION=1;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) ../ @@ -94,7 +94,7 @@ MaxSpeed true true - TBB_USE_CAPTURED_EXCEPTION=1;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + TBB_USE_CAPTURED_EXCEPTION=0;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) ../ true -- 2.39.2