Skip to content

Commit

Permalink
Make Mac work.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersbakken committed Oct 12, 2014
1 parent 39d949f commit 0aac869
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rct/Log.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ class Log
#ifdef OS_Darwin
Log operator<<(long number) { return addStringStream(number); }
Log operator<<(size_t number) { return addStringStream(number); }
#endif
#if (ULONG_MAX) != (UINT_MAX)
#elif (ULONG_MAX) != (UINT_MAX)
Log operator<<(uint64_t number) { return addStringStream(number); }
Log operator<<(int64_t number) { return addStringStream(number); }
#endif
Expand Down

0 comments on commit 0aac869

Please sign in to comment.