Browse Source

Merge pull request #1270 from AJenbo/infinity

Infinity
pull/133/head
Robin Eklind 7 years ago committed by GitHub
parent
commit
e4fc6dc3af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      3rdParty/Storm/Source/storm.h

3
3rdParty/Storm/Source/storm.h vendored

@ -7,6 +7,7 @@
#include <winuser.h>
#include <winsock.h>
#include <ddraw.h>
#include <limits>
// Note to self: Linker error => forgot a return value in cpp
@ -52,6 +53,8 @@ typedef struct _WSIZE
} WSIZE, *PWSIZE;
#ifdef __cplusplus
static float infinity = std::numeric_limits<float>::infinity();
struct CCritSect {
CRITICAL_SECTION m_critsect;

Loading…
Cancel
Save