[Sumover-dev] [svn commit] r4210 - vic/branches/mpeg4/render

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Wed Jul 2 10:38:55 BST 2008


Author: piers
Date: Wed Jul  2 10:38:55 2008
New Revision: 4210

Modified:
   vic/branches/mpeg4/render/vw.cpp

Log:
Removed [M$ specific] __try (at line 1321) as VC++2008 complains: "Cannot use __try in functions that require object unwinding". 

Modified: vic/branches/mpeg4/render/vw.cpp
==============================================================================
--- vic/branches/mpeg4/render/vw.cpp	(original)
+++ vic/branches/mpeg4/render/vw.cpp	Wed Jul  2 10:38:55 2008
@@ -1317,15 +1317,7 @@
     {
 	DDrawImageMonitor *m = *it;
 
-#ifdef _MSC_VER
-	__try {
-#endif
-	    m->putimage(hWnd, sx, sy, x, y, w, h);
-#ifdef _MSC_VER
-	} 
-	__except(exceptionFilter(GetExceptionInformation())) {
-	}	    
-#endif
+	m->putimage(hWnd, sx, sy, x, y, w, h);
     }
 }
 



More information about the Sumover-dev mailing list