2020-08-30 15:43:45 +02:00
|
|
|
|
|
|
|
|
// Copyright Catch2 Authors
|
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
2022-10-28 11:22:53 +02:00
|
|
|
// (See accompanying file LICENSE.txt or copy at
|
2020-08-30 15:43:45 +02:00
|
|
|
// https://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2020-08-29 20:48:32 +02:00
|
|
|
#ifndef CATCH_VERSION_MACROS_HPP_INCLUDED
|
|
|
|
|
#define CATCH_VERSION_MACROS_HPP_INCLUDED
|
2020-01-19 15:30:38 +01:00
|
|
|
|
2020-01-25 09:11:43 +01:00
|
|
|
#define CATCH_VERSION_MAJOR 3
|
2023-01-22 19:43:11 +01:00
|
|
|
#define CATCH_VERSION_MINOR 3
|
2023-02-27 15:12:35 +01:00
|
|
|
#define CATCH_VERSION_PATCH 2
|
2020-01-19 15:30:38 +01:00
|
|
|
|
2020-08-29 20:48:32 +02:00
|
|
|
#endif // CATCH_VERSION_MACROS_HPP_INCLUDED
|