summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/pcf_flags.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/pcf_flags.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/pcf_flags.cpp105
1 files changed, 0 insertions, 105 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/pcf_flags.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/pcf_flags.cpp
deleted file mode 100644
index 0a22bf72..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/pcf_flags.cpp
+++ /dev/null
@@ -1,105 +0,0 @@
-/**
- * @file pcf_flags.cpp
- *
- * @author Guy Maurel
- * @license GPL v2+
- */
-
-#include "pcf_flags.h"
-
-static const char *pcf_names[] =
-{
- "IN_PREPROC", // 0
- "IN_STRUCT", // 1
- "IN_ENUM", // 2
- "IN_FCN_DEF", // 3
- "IN_FCN_CALL", // 4
- "IN_SPAREN", // 5
- "IN_TEMPLATE", // 6
- "IN_TYPEDEF", // 7
- "IN_CONST_ARGS", // 8
- "IN_ARRAY_ASSIGN", // 9
- "IN_CLASS", // 10
- "IN_CLASS_BASE", // 11
- "IN_NAMESPACE", // 12
- "IN_FOR", // 13
- "IN_OC_MSG", // 14
- "IN_WHERE_SPEC", // 15
- "IN_DECLTYPE", // 16
- "FORCE_SPACE", // 17
- "STMT_START", // 18
- "EXPR_START", // 19
- "DONT_INDENT", // 20
- "ALIGN_START", // 21
- "WAS_ALIGNED", // 22
- "VAR_TYPE", // 23
- "VAR_DEF", // 24
- "VAR_1ST", // 25
- "VAR_INLINE", // 26
- "RIGHT_COMMENT", // 27
- "OLD_FCN_PARAMS", // 28
- "LVALUE", // 29
- "ONE_LINER", // 30
- "EMPTY_BODY", // 31
- "ANCHOR", // 32
- "PUNCTUATOR", // 33
- "INSERTED", // 34
- "LONG_BLOCK", // 35
- "OC_BOXED", // 36
- "KEEP_BRACE", // 37
- "OC_RTYPE", // 38
- "OC_ATYPE", // 39
- "WF_ENDIF", // 40
- "IN_QT_MACRO", // 41
- "IN_FCN_CTOR", // 42 Issue #2152
- "IN_TRY_BLOCK", // 43 Issue #1734
- "INCOMPLETE", // 44
- "IN_LAMBDA", // 45
- "WF_IF", // 46
-};
-
-
-std::string pcf_flags_str(pcf_flags_t flags)
-{
- char buffer[64];
-
- // Generate hex representation first
-#ifdef WIN32
- snprintf(buffer, 63, "[");
-#else // not WIN32
- snprintf(buffer, 63, "[0x%llx:", (long long unsigned int)(flags));
-#endif // ifdef WIN32
-
- // Add human-readable names
- auto out = std::string{ buffer };
- auto first = true;
-
- for (size_t i = 0; i < ARRAY_SIZE(pcf_names); ++i)
- {
- if (flags & static_cast<pcf_flag_e>(pcf_bit(i)))
- {
- if (first)
- {
- first = false;
- }
- else
- {
- out += ',';
- }
- out += pcf_names[i];
- }
- }
-
- out += ']';
- return(out);
-}
-
-
-void log_pcf_flags(log_sev_t sev, pcf_flags_t flags)
-{
- if (!log_sev_on(sev))
- {
- return;
- }
- log_fmt(sev, "%s\n", pcf_flags_str(flags).c_str());
-}