Removed the leak detector for cpp < 17

This commit is contained in:
paulfd 2019-09-22 16:03:09 +02:00
parent f3348aa112
commit 3bf8a01b19

View file

@ -25,6 +25,7 @@
#include <atomic>
#include "Debug.h"
#if __cplusplus >= 201703L
template <class Owner>
class LeakDetector {
public:
@ -70,3 +71,7 @@ private:
#else
#define LEAK_DETECTOR(Class)
#endif
#else
#define LEAK_DETECTOR(Class)
#endif