ForceAssert.h 257 B

123456789101112
  1. // Copyright (c) 2008-2023 the Urho3D project
  2. // License: MIT
  3. #pragma once
  4. // This is defined in the release version and disables assert().
  5. // We need assert() to work even in the release version
  6. #ifdef NDEBUG
  7. #undef NDEBUG
  8. #endif
  9. #include <cassert>