catch_leak_detector.h 465 B

123456789101112131415161718
  1. /*
  2. * Created by Martin on 12/07/2017.
  3. *
  4. * Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. #ifndef TWOBLUECUBES_CATCH_LEAK_DETECTOR_H_INCLUDED
  8. #define TWOBLUECUBES_CATCH_LEAK_DETECTOR_H_INCLUDED
  9. namespace Catch {
  10. struct LeakDetector {
  11. LeakDetector();
  12. ~LeakDetector();
  13. };
  14. }
  15. #endif // TWOBLUECUBES_CATCH_LEAK_DETECTOR_H_INCLUDED