1 2 3 4 5 6 7 8 9 10
#ifndef UTILS_H #define UTILS_H #if __GNUC__ >= 7 #define FALLTROUGH __attribute__((fallthrough)); #else #define FALLTROUGH #endif #endif // UTILS_H