Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
c25d7f1b
Commit
c25d7f1b
authored
Nov 26, 2012
by
Andrew Talbot
Committed by
Alexandre Julliard
Nov 27, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp90: Remove superfluous semicolons.
parent
2808433a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
exception.c
dlls/msvcp90/exception.c
+8
-8
No files found.
dlls/msvcp90/exception.c
View file @
c25d7f1b
...
@@ -132,7 +132,7 @@ void * __thiscall MSVCP_exception_vector_dtor(exception *this, unsigned int flag
...
@@ -132,7 +132,7 @@ void * __thiscall MSVCP_exception_vector_dtor(exception *this, unsigned int flag
}
}
DEFINE_RTTI_DATA0
(
exception
,
0
,
".?AVexception@std@@"
);
DEFINE_RTTI_DATA0
(
exception
,
0
,
".?AVexception@std@@"
);
DEFINE_CXX_DATA0
(
exception
,
MSVCP_exception_dtor
)
;
DEFINE_CXX_DATA0
(
exception
,
MSVCP_exception_dtor
)
/* bad_alloc class data */
/* bad_alloc class data */
typedef
exception
bad_alloc
;
typedef
exception
bad_alloc
;
...
@@ -189,7 +189,7 @@ const char* __thiscall MSVCP_what_exception(exception * this)
...
@@ -189,7 +189,7 @@ const char* __thiscall MSVCP_what_exception(exception * this)
}
}
DEFINE_RTTI_DATA1
(
bad_alloc
,
0
,
&
exception_rtti_base_descriptor
,
".?AVbad_alloc@std@@"
);
DEFINE_RTTI_DATA1
(
bad_alloc
,
0
,
&
exception_rtti_base_descriptor
,
".?AVbad_alloc@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 */
/* logic_error class data */
typedef
struct
_logic_error
{
typedef
struct
_logic_error
{
...
@@ -256,7 +256,7 @@ const char* __thiscall MSVCP_logic_error_what(logic_error *this)
...
@@ -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@std@@"
);
DEFINE_RTTI_DATA1
(
logic_error
,
0
,
&
exception_rtti_base_descriptor
,
".?AVlogic_error@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 */
/* length_error class data */
typedef
logic_error
length_error
;
typedef
logic_error
length_error
;
...
@@ -281,7 +281,7 @@ length_error* __thiscall MSVCP_length_error_copy_ctor(
...
@@ -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@std@@"
);
DEFINE_RTTI_DATA2
(
length_error
,
0
,
&
logic_error_rtti_base_descriptor
,
&
exception_rtti_base_descriptor
,
".?AVlength_error@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 */
/* out_of_range class data */
typedef
logic_error
out_of_range
;
typedef
logic_error
out_of_range
;
...
@@ -306,7 +306,7 @@ out_of_range* __thiscall MSVCP_out_of_range_copy_ctor(
...
@@ -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@std@@"
);
DEFINE_RTTI_DATA2
(
out_of_range
,
0
,
&
logic_error_rtti_base_descriptor
,
&
exception_rtti_base_descriptor
,
".?AVout_of_range@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 */
/* invalid_argument class data */
typedef
logic_error
invalid_argument
;
typedef
logic_error
invalid_argument
;
...
@@ -331,7 +331,7 @@ invalid_argument* __thiscall MSVCP_invalid_argument_copy_ctor(
...
@@ -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@std@@"
);
DEFINE_RTTI_DATA2
(
invalid_argument
,
0
,
&
logic_error_rtti_base_descriptor
,
&
exception_rtti_base_descriptor
,
".?AVinvalid_argument@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 */
/* runtime_error class data */
typedef
struct
{
typedef
struct
{
...
@@ -398,7 +398,7 @@ const char* __thiscall MSVCP_runtime_error_what(runtime_error *this)
...
@@ -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@std@@"
);
DEFINE_RTTI_DATA1
(
runtime_error
,
0
,
&
exception_rtti_base_descriptor
,
".?AVruntime_error@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 */
/* failure class data */
typedef
runtime_error
failure
;
typedef
runtime_error
failure
;
...
@@ -445,7 +445,7 @@ const char* __thiscall MSVCP_failure_what(failure *this)
...
@@ -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@std@@"
);
DEFINE_RTTI_DATA2
(
failure
,
0
,
&
runtime_error_rtti_base_descriptor
,
&
exception_rtti_base_descriptor
,
".?AVfailure@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@std@@YAXXZ */
/* ?_Nomemory@std@@YAXXZ */
void
__cdecl
_Nomemory
(
void
)
void
__cdecl
_Nomemory
(
void
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment