DescriptionFix some VS 2015 warnings
Fix some warnings when compiling crashpad with VC++ 2015 Update 1.
Warning 4302 occurs if you convert from a pointer to a <sizeof(void*)
integer in one cast, because this often indicates an accidental pointer
truncation which can be a bug in 64-bit builds.
Warning 4577 warns that noexcept will not be enforced, but we don't want
it to be enforced anyway, so I disabled it. The full warning is:
warning C4577: 'noexcept' used with no exception handling mode specified
termination on exception is not guaranteed. Specify /EHsc
BUG=440500
R=mark@chromium.org
Committed: https://chromium.googlesource.com/crashpad/crashpad/+/b0394744cc41a846eb9a79ccc73cd2992790ed42
Patch Set 1 #Patch Set 2 : Suppress/fix two VS 2015 warnings #
Total comments: 7
Patch Set 3 : Remove comment and rename variable #
Total comments: 1
Messages
Total messages: 8 (3 generated)
|