summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/option_enum.cpp.in
blob: aeb976b2a4ad18cb048eecf38bf5300c86f48470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
##BANNER##
#include "options.h"

#include "base_types.h"
#include "logger.h"

#include <cstdlib>

#ifdef HAVE_STRINGS_H
#include <strings.h>  // strcasecmp()
#endif

#if defined(_MSC_VER)
#pragma warning(disable: 4809)
#elif __GNUC__ > 4 || __clang_major__ > 3 || __clang_minor__ > 4
#pragma GCC diagnostic ignored "-Wswitch-bool"
#endif

namespace uncrustify
{

##VALUE_STRINGS##
##CONVERSIONS##
} // namespace uncrustify