cpp-common/bt2c/fmt.hpp: use `wise_enum::string_type` in `EnableIfIsWiseEnum` definition
[babeltrace.git] / src / plugins / ctf / common / src / metadata / tsdl / parser-wrap.hpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2019 EfficiOS Inc.
5 */
6
7 #ifndef BABELTRACE_PLUGINS_CTF_COMMON_METADATA_PARSER_WRAP_H
8 #define BABELTRACE_PLUGINS_CTF_COMMON_METADATA_PARSER_WRAP_H
9
10 /*
11 * Small wrapper around the bison-generated parser.h to conditionally define
12 * YYDEBUG (and therefore the yydebug declaration).
13 */
14
15 #include "logging/log-api.h"
16
17 #if BT_LOG_ENABLED_TRACE
18 # define YYDEBUG 1
19 #else
20 # define YYDEBUG 0
21 #endif
22
23 #define ALLOW_INCLUDE_PARSER_H
24 #include "plugins/ctf/common/src/metadata/tsdl/parser.hpp"
25 #undef ALLOW_INCLUDE_PARSER_H
26
27 #endif
This page took 0.029214 seconds and 4 git commands to generate.