kerneltest/e32test/cppexceptions/second_excp.h
branchRCL_3
changeset 257 3e88ff8f41d5
parent 256 c1f20ce4abcf
--- a/kerneltest/e32test/cppexceptions/second_excp.h	Tue Aug 31 16:34:26 2010 +0300
+++ b/kerneltest/e32test/cppexceptions/second_excp.h	Wed Sep 01 12:34:56 2010 +0100
@@ -41,11 +41,7 @@
 
 class MyFourthException : public VB1 , public VB2 {
 public:
-#if defined(__ARMCC__) && __ARMCC_VERSION >= 400000
-  EXPORT_C MyFourthException(int x) { iVal = x; iVal2=x+2;};
-#else
   MyFourthException(int x) { iVal = x; iVal2=x+2;};
-#endif
   int iVal2;
 };