mirror of
https://github.com/chromium/crashpad.git
synced 2025-03-09 22:26:06 +00:00
Get VS2013 compilation working again for Crashpad
Follow up #1 to https://chromium-review.googlesource.com/c/400015/, still pending further discussion on details of registration. R=mark@chromium.org BUG=chromium:567850,chromium:656800 Change-Id: Idfee3a3241d7cfe418fbf9e40f17f35e5dbefac9 Reviewed-on: https://chromium-review.googlesource.com/401182 Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
parent
2d87606bb5
commit
cc0b7deef2
@ -108,7 +108,13 @@ class InitialClientData {
|
||||
HANDLE client_process_;
|
||||
bool is_valid_;
|
||||
|
||||
#if _MSC_VER < 1900
|
||||
// The default copy and assignment constructors are fine, as we don't take
|
||||
// ownership of the handles. They also shouldn't be required for how we use
|
||||
// this class, however, VS2013 seems to think they are.
|
||||
#else
|
||||
DISALLOW_COPY_AND_ASSIGN(InitialClientData);
|
||||
#endif // _MSC_VER < 1900
|
||||
};
|
||||
|
||||
} // namespace crashpad
|
||||
|
Loading…
x
Reference in New Issue
Block a user