summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30255-align_constr.cpp
blob: 380f0c8ba71afe74df6a42d7bf5177184429d172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct TelegramIndex
{
   TelegramIndex(const char *pN, unsigned long nI) :
      pTelName(pN),
      nTelIndex(n)
   {
   }

   ~TelegramIndex()
   {
   }

   const char *const pTelName;
   unsigned long     nTelIndex;
};