mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[GDI32] Fix build with VS 2015.
svn path=/trunk/; revision=69016
This commit is contained in:
parent
090f1203a2
commit
02b26e04a7
1 changed files with 2 additions and 2 deletions
|
@ -519,8 +519,8 @@ _assert (
|
|||
DbgRaiseAssertionFailure();
|
||||
}
|
||||
|
||||
#if defined(_MSC_VER) && (DBG != 1)
|
||||
// MSVC uses it's own in this case. Thus skipping it.
|
||||
#if (_MSC_VER < 1900) && (DBG != 1)
|
||||
/* MSVC uses its own in this case. */
|
||||
#else
|
||||
|
||||
double
|
||||
|
|
Loading…
Reference in a new issue