Changeset 886 for cpp/common/nonstd.h


Ignore:
Timestamp:
07/22/19 01:13:09 (5 years ago)
Author:
Maciej Komosinski
Message:

LONGLONG no longer needed as long as int64_t became standard

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/common/nonstd.h

    r842 r886  
    11// This file is a part of Framsticks SDK.  http://www.framsticks.com/
    2 // Copyright (C) 1999-2015  Maciej Komosinski and Szymon Ulatowski.
     2// Copyright (C) 1999-2019  Maciej Komosinski and Szymon Ulatowski.
    33// See LICENSE.txt for details.
    44
     
    2121
    2222
    23 /////////////////////////////////////////////////////// 64-bit int type and other macros
     23/////////////////////////////////////////////////////// path separators and other macros
    2424#ifdef _WIN32
    25         typedef __int64 LONGLONG;
    2625        #define PATH_SEPARATOR_CHAR '\\'
    2726        #define PATH_SEPARATOR_STRING "\\"
    2827        #define FPU_THROWS_EXCEPTIONS
    2928#else
    30         #define LONGLONG long long int
    3129        #define PATH_SEPARATOR_CHAR '/'
    3230        #define PATH_SEPARATOR_STRING "/"
     
    7573
    7674#endif
    77 
Note: See TracChangeset for help on using the changeset viewer.