deleting from the grid is now bleaching fast added new helper methods many new test-cases many new methods for geo classes and others added a bunch of new grid-walkers
8 lines
144 B
C
8 lines
144 B
C
#ifndef DEFINES_H
|
|
#define DEFINES_H
|
|
|
|
#define likely(x) __builtin_expect((x),1)
|
|
#define unlikely(x) __builtin_expect((x),0)
|
|
|
|
#endif // DEFINES_H
|