nissy-core

The "engine" of nissy, including the H48 optimal solver.
git clone https://git.tronto.net/nissy-core
Download | Log | Files | Refs | README | LICENSE

compilers.h (159B)


      1 #if defined(__GNUC__)
      2 
      3 #define unused __attribute__((unused))
      4 
      5 #elif defined(__clang__)
      6 
      7 #define unused __attribute__((unused))
      8 
      9 #else
     10 
     11 #define unused
     12 
     13 #endif