Some checks reported errors
continuous-integration/drone/push Build encountered an error
15 lines
291 B
C++
15 lines
291 B
C++
namespace lt {
|
|
|
|
#ifdef LIGHT_ENABLE_CHECK
|
|
constexpr bool light_enabled_check = true;
|
|
#else
|
|
constexpr bool light_enabled_check = false;
|
|
#endif
|
|
|
|
#ifdef LIGHT_ENABLE_ENSURE
|
|
constexpr bool light_enabled_ensure = true;
|
|
#else
|
|
constexpr bool light_enabled_ensure = false;
|
|
#endif
|
|
|
|
} // namespace lt
|