diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/align_asm_colon.cpp')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/align_asm_colon.cpp | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/align_asm_colon.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/align_asm_colon.cpp deleted file mode 100644 index 1fb6c636..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.74.0/src/align_asm_colon.cpp +++ /dev/null @@ -1,62 +0,0 @@ -/** - * @file align_asm_colon.cpp - * - * @author Guy Maurel - * split from align.cpp - * @author Ben Gardner - * @license GPL v2+ - */ - -#include "align_asm_colon.h" - -#include "align_stack.h" -#include "chunk_list.h" - - -void align_asm_colon(void) -{ - LOG_FUNC_ENTRY(); - - bool did_nl; - AlignStack cas; // for the colons - - cas.Start(4); - - chunk_t *pc = chunk_get_head(); - - while (pc != nullptr) - { - if (chunk_is_not_token(pc, CT_ASM_COLON)) - { - pc = chunk_get_next(pc); - continue; - } - cas.Reset(); - - pc = chunk_get_next_ncnnl(pc, scope_e::PREPROC); - size_t level = pc ? pc->level : 0; - did_nl = true; - - while ( pc != nullptr - && pc->level >= level) - { - if (chunk_is_newline(pc)) - { - cas.NewLines(pc->nl_count); - did_nl = true; - } - else if (chunk_is_token(pc, CT_ASM_COLON)) - { - cas.Flush(); - did_nl = true; - } - else if (did_nl) - { - did_nl = false; - cas.Add(pc); - } - pc = chunk_get_next_nc(pc, scope_e::PREPROC); - } - cas.End(); - } -} // align_asm_colon |