diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_oc_msg_spec.cpp')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_oc_msg_spec.cpp | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_oc_msg_spec.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_oc_msg_spec.cpp new file mode 100644 index 00000000..4c7a2dd5 --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/src/align_oc_msg_spec.cpp @@ -0,0 +1,37 @@ +/** + * @file align_oc_msg_spec.cpp + * + * @author Guy Maurel + * split from align.cpp + * @author Ben Gardner + * @license GPL v2+ + */ + +#include "align_oc_msg_spec.h" + +#include "align_assign.h" +#include "align_stack.h" + + +void align_oc_msg_spec(size_t span) +{ + LOG_FUNC_ENTRY(); + + AlignStack as; + + as.Start(span, 0); + + for (Chunk *pc = Chunk::GetHead(); pc->IsNotNullChunk(); pc = pc->GetNext()) + { + if (chunk_is_newline(pc)) + { + as.NewLines(pc->nl_count); + } + else if (chunk_is_token(pc, CT_OC_MSG_SPEC)) + { + as.Add(pc); + } + } + + as.End(); +} // void align_oc_msg_spec |