blob: e93f74a42ddf723deb63175fb5f061e59305edcd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (c) 2017 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/
#ifndef TAOCPP_PEGTL_INCLUDE_CONFIG_HPP
#define TAOCPP_PEGTL_INCLUDE_CONFIG_HPP
#ifndef TAOCPP_PEGTL_NAMESPACE
#define TAOCPP_PEGTL_NAMESPACE pegtl
#endif
// Enable some improvements to the readability of
// demangled type names under some circumstances.
// #define TAOCPP_PEGTL_PRETTY_DEMANGLE
#endif
|