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
bdedab6c
Commit
bdedab6c
authored
Nov 28, 2012
by
Piotr Caban
Committed by
Alexandre Julliard
Nov 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Remove superfluous semicolons.
parent
cf8564a9
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
11 deletions
+11
-11
cpp.c
dlls/msvcrt/cpp.c
+10
-10
cxx.h
dlls/msvcrt/cxx.h
+1
-1
No files found.
dlls/msvcrt/cpp.c
View file @
bdedab6c
...
...
@@ -666,16 +666,16 @@ __ASM_VTABLE(__non_rtti_object,
}
#endif
DEFINE_RTTI_DATA0
(
type_info
,
0
,
".?AVtype_info@@"
)
;
DEFINE_RTTI_DATA0
(
exception
,
0
,
".?AVexception@@"
)
;
DEFINE_RTTI_DATA1
(
bad_typeid
,
0
,
&
exception_rtti_base_descriptor
,
".?AVbad_typeid@@"
)
;
DEFINE_RTTI_DATA1
(
bad_cast
,
0
,
&
exception_rtti_base_descriptor
,
".?AVbad_cast@@"
)
;
DEFINE_RTTI_DATA2
(
__non_rtti_object
,
0
,
&
bad_typeid_rtti_base_descriptor
,
&
exception_rtti_base_descriptor
,
".?AV__non_rtti_object@@"
)
;
DEFINE_EXCEPTION_TYPE_INFO
(
exception
,
0
,
NULL
,
NULL
)
;
DEFINE_EXCEPTION_TYPE_INFO
(
bad_typeid
,
1
,
&
exception_cxx_type_info
,
NULL
)
;
DEFINE_EXCEPTION_TYPE_INFO
(
bad_cast
,
1
,
&
exception_cxx_type_info
,
NULL
)
;
DEFINE_EXCEPTION_TYPE_INFO
(
__non_rtti_object
,
2
,
&
bad_typeid_cxx_type_info
,
&
exception_cxx_type_info
)
;
DEFINE_RTTI_DATA0
(
type_info
,
0
,
".?AVtype_info@@"
)
DEFINE_RTTI_DATA0
(
exception
,
0
,
".?AVexception@@"
)
DEFINE_RTTI_DATA1
(
bad_typeid
,
0
,
&
exception_rtti_base_descriptor
,
".?AVbad_typeid@@"
)
DEFINE_RTTI_DATA1
(
bad_cast
,
0
,
&
exception_rtti_base_descriptor
,
".?AVbad_cast@@"
)
DEFINE_RTTI_DATA2
(
__non_rtti_object
,
0
,
&
bad_typeid_rtti_base_descriptor
,
&
exception_rtti_base_descriptor
,
".?AV__non_rtti_object@@"
)
DEFINE_EXCEPTION_TYPE_INFO
(
exception
,
0
,
NULL
,
NULL
)
DEFINE_EXCEPTION_TYPE_INFO
(
bad_typeid
,
1
,
&
exception_cxx_type_info
,
NULL
)
DEFINE_EXCEPTION_TYPE_INFO
(
bad_cast
,
1
,
&
exception_cxx_type_info
,
NULL
)
DEFINE_EXCEPTION_TYPE_INFO
(
__non_rtti_object
,
2
,
&
bad_typeid_cxx_type_info
,
&
exception_cxx_type_info
)
void
msvcrt_init_exception
(
void
*
base
)
{
...
...
dlls/msvcrt/cxx.h
View file @
bdedab6c
...
...
@@ -107,7 +107,7 @@ const rtti_object_locator name ## _rtti = { \
0, \
&name ## _type_info, \
&name ## _hierarchy \
}
}
;
#else
...
...
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