diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/parameter_pack_cleanup.cpp')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/parameter_pack_cleanup.cpp | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/parameter_pack_cleanup.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/parameter_pack_cleanup.cpp new file mode 100644 index 00000000..7b81175a --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/parameter_pack_cleanup.cpp @@ -0,0 +1,67 @@ +/** + * @file parameter_pack_cleanup.cpp + * + * @author Guy Maurel + * @license GPL v2+ + */ + +#include "parameter_pack_cleanup.h" + +#include "chunk.h" + + +void parameter_pack_cleanup(void) +{ + LOG_FUNC_ENTRY(); + + Chunk *pc = Chunk::GetHead(); + + while (pc->IsNotNullChunk()) + { + LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, Text() is '%s'\n", + __func__, __LINE__, pc->orig_line, pc->orig_col, pc->Text()); + + // look for template + if (chunk_is_token(pc, CT_TEMPLATE)) // Issue #3309 + { + Chunk *template_end = pc->GetNextType(CT_SEMICOLON, pc->level); + + // look for a parameter pack + while (pc->IsNotNullChunk()) + { + LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, Text() is '%s'\n", + __func__, __LINE__, pc->orig_line, pc->orig_col, pc->Text()); + + if (chunk_is_token(pc, CT_PARAMETER_PACK)) + { + Chunk *parameter_pack = pc; + + // look for a token with the same text + while (pc->IsNotNullChunk()) + { + LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, Text() is '%s'\n", + __func__, __LINE__, pc->orig_line, pc->orig_col, pc->Text()); + + if (pc == template_end) + { + break; + } + + if (strcmp(pc->Text(), parameter_pack->Text()) == 0) + { + set_chunk_type(pc, CT_PARAMETER_PACK); + } + pc = pc->GetNext(); + } + } + pc = pc->GetNext(); + + if (pc == template_end) + { + break; + } + } + } + pc = pc->GetNext(); + } +} // parameter_pack_cleanup |