summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/src/align_struct_initializers.cpp
blob: ca032bc371681aca41ff9616d47c01eb84e57837 (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
25
26
27
28
29
30
31
32
33
34
/**
 * @file align_struct_initializers.cpp
 *
 * @author  Guy Maurel
 * split from align.cpp
 * @author  Ben Gardner
 * @license GPL v2+
 */

#include "align_struct_initializers.h"

#include "align_init_brace.h"
#include "chunk.h"


void align_struct_initializers()
{
   LOG_FUNC_ENTRY();
   Chunk *pc = Chunk::GetHead();

   while (pc->IsNotNullChunk())
   {
      Chunk *prev = pc->GetPrevNcNnl();

      if (  prev->Is(CT_ASSIGN)
         && (  pc->Is(CT_BRACE_OPEN)
            || (  language_is_set(LANG_D)
               && pc->Is(CT_SQUARE_OPEN))))
      {
         align_init_brace(pc);
      }
      pc = pc->GetNextType(CT_BRACE_OPEN);
   }
} // align_struct_initializers