15 lines
421 B
C++
15 lines
421 B
C++
// Copyright (c) 2017-2021 Dr. Colin Hirsch and Daniel Frey
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#ifndef TAO_PEGTL_VERSION_HPP
|
|
#define TAO_PEGTL_VERSION_HPP
|
|
|
|
#define TAO_PEGTL_VERSION "3.3.0"
|
|
|
|
#define TAO_PEGTL_VERSION_MAJOR 3
|
|
#define TAO_PEGTL_VERSION_MINOR 3
|
|
#define TAO_PEGTL_VERSION_PATCH 0
|
|
|
|
#endif
|