Skip to content

Commit

Permalink
Merge pull request #69 from leapmotion/bug-assume-nullptr-avail
Browse files Browse the repository at this point in the history
Assume nullptr_t is available unless told otherwise
  • Loading branch information
gtremper committed Aug 20, 2014
2 parents 21c2c12 + 3ce705e commit a813685
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contrib/C++11/cpp11.h
Expand Up @@ -172,8 +172,8 @@
#elif __cplusplus > 199711L
#define HAS_NULLPTR_T 1
#else
// No idea--better safe than sorry?
#define HAS_NULLPTR_T 0
// No idea--better safe than sorry!
#define HAS_NULLPTR_T 1
#endif

#if ! HAS_NULLPTR_T
Expand Down

0 comments on commit a813685

Please sign in to comment.