123456789101112131415161718192021222324252627282930313233 |
- #ifndef TWOBLUECUBES_CATCH_IMPL_HPP_INCLUDED
- #define TWOBLUECUBES_CATCH_IMPL_HPP_INCLUDED
- #ifdef __clang__
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wweak-vtables"
- #endif
- #include "catch_test_spec.h"
- #include "catch_test_case_tracker.h"
- #include "catch_leak_detector.h"
- namespace Catch {
- LeakDetector leakDetector;
- }
- #ifdef __clang__
- #pragma clang diagnostic pop
- #endif
- #endif
|