9 lines
175 B
C++
9 lines
175 B
C++
#pragma once
|
|
|
|
// Fixes conflict in Windows with <windows.h>
|
|
#ifdef _WIN32
|
|
#undef ERROR
|
|
#endif // _WIN32
|
|
|
|
/// Macro alias for trailing return type functions.
|
|
#define fn auto
|