Andrew Talbot : msvcp90: Remove superfluous semicolons.

Alexandre Julliard julliard at winehq.org
Tue Nov 27 14:30:47 CST 2012


Module: wine
Branch: master
Commit: c25d7f1b3c21aa79c2c231ae5ea9f76c1b861a02
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c25d7f1b3c21aa79c2c231ae5ea9f76c1b861a02

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Mon Nov 26 19:42:28 2012 +0000

msvcp90: Remove superfluous semicolons.

---

 dlls/msvcp90/exception.c |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dlls/msvcp90/exception.c b/dlls/msvcp90/exception.c
index 6247616..1e33301 100644
--- a/dlls/msvcp90/exception.c
+++ b/dlls/msvcp90/exception.c
@@ -132,7 +132,7 @@ void * __thiscall MSVCP_exception_vector_dtor(exception *this, unsigned int flag
 }
 
 DEFINE_RTTI_DATA0(exception, 0, ".?AVexception at std@@");
-DEFINE_CXX_DATA0(exception, MSVCP_exception_dtor);
+DEFINE_CXX_DATA0(exception, MSVCP_exception_dtor)
 
 /* bad_alloc class data */
 typedef exception bad_alloc;
@@ -189,7 +189,7 @@ const char* __thiscall MSVCP_what_exception(exception * this)
 }
 
 DEFINE_RTTI_DATA1(bad_alloc, 0, &exception_rtti_base_descriptor, ".?AVbad_alloc at std@@");
-DEFINE_CXX_DATA1(bad_alloc, &exception_cxx_type_info, MSVCP_bad_alloc_dtor);
+DEFINE_CXX_DATA1(bad_alloc, &exception_cxx_type_info, MSVCP_bad_alloc_dtor)
 
 /* logic_error class data */
 typedef struct _logic_error {
@@ -256,7 +256,7 @@ const char* __thiscall MSVCP_logic_error_what(logic_error *this)
 }
 
 DEFINE_RTTI_DATA1(logic_error, 0, &exception_rtti_base_descriptor, ".?AVlogic_error at std@@");
-DEFINE_CXX_DATA1(logic_error, &exception_cxx_type_info, MSVCP_logic_error_dtor);
+DEFINE_CXX_DATA1(logic_error, &exception_cxx_type_info, MSVCP_logic_error_dtor)
 
 /* length_error class data */
 typedef logic_error length_error;
@@ -281,7 +281,7 @@ length_error* __thiscall MSVCP_length_error_copy_ctor(
 }
 
 DEFINE_RTTI_DATA2(length_error, 0, &logic_error_rtti_base_descriptor, &exception_rtti_base_descriptor, ".?AVlength_error at std@@");
-DEFINE_CXX_DATA2(length_error, &logic_error_cxx_type_info, &exception_cxx_type_info, MSVCP_logic_error_dtor);
+DEFINE_CXX_DATA2(length_error, &logic_error_cxx_type_info, &exception_cxx_type_info, MSVCP_logic_error_dtor)
 
 /* out_of_range class data */
 typedef logic_error out_of_range;
@@ -306,7 +306,7 @@ out_of_range* __thiscall MSVCP_out_of_range_copy_ctor(
 }
 
 DEFINE_RTTI_DATA2(out_of_range, 0, &logic_error_rtti_base_descriptor, &exception_rtti_base_descriptor, ".?AVout_of_range at std@@");
-DEFINE_CXX_DATA2(out_of_range, &logic_error_cxx_type_info, &exception_cxx_type_info, MSVCP_logic_error_dtor);
+DEFINE_CXX_DATA2(out_of_range, &logic_error_cxx_type_info, &exception_cxx_type_info, MSVCP_logic_error_dtor)
 
 /* invalid_argument class data */
 typedef logic_error invalid_argument;
@@ -331,7 +331,7 @@ invalid_argument* __thiscall MSVCP_invalid_argument_copy_ctor(
 }
 
 DEFINE_RTTI_DATA2(invalid_argument, 0, &logic_error_rtti_base_descriptor, &exception_rtti_base_descriptor, ".?AVinvalid_argument at std@@");
-DEFINE_CXX_DATA2(invalid_argument, &logic_error_cxx_type_info,  &exception_cxx_type_info, MSVCP_logic_error_dtor);
+DEFINE_CXX_DATA2(invalid_argument, &logic_error_cxx_type_info,  &exception_cxx_type_info, MSVCP_logic_error_dtor)
 
 /* runtime_error class data */
 typedef struct {
@@ -398,7 +398,7 @@ const char* __thiscall MSVCP_runtime_error_what(runtime_error *this)
 }
 
 DEFINE_RTTI_DATA1(runtime_error, 0, &exception_rtti_base_descriptor, ".?AVruntime_error at std@@");
-DEFINE_CXX_DATA1(runtime_error, &exception_cxx_type_info, MSVCP_runtime_error_dtor);
+DEFINE_CXX_DATA1(runtime_error, &exception_cxx_type_info, MSVCP_runtime_error_dtor)
 
 /* failure class data */
 typedef runtime_error failure;
@@ -445,7 +445,7 @@ const char* __thiscall MSVCP_failure_what(failure *this)
 }
 
 DEFINE_RTTI_DATA2(failure, 0, &runtime_error_rtti_base_descriptor, &exception_rtti_base_descriptor, ".?AVfailure at std@@");
-DEFINE_CXX_DATA2(failure, &runtime_error_cxx_type_info, &exception_cxx_type_info, MSVCP_runtime_error_dtor);
+DEFINE_CXX_DATA2(failure, &runtime_error_cxx_type_info, &exception_cxx_type_info, MSVCP_runtime_error_dtor)
 
 /* ?_Nomemory at std@@YAXXZ */
 void __cdecl _Nomemory(void)




More information about the wine-cvs mailing list