blob: 12992ff38846e5acda298f84751550f690ec292d (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
/**
* @file parameter_pack_cleanup.cpp
*
* @author Guy Maurel
* @license GPL v2+
*/
#include "parameter_pack_cleanup.h"
#include "chunk.h"
#include "uncrustify.h"
void parameter_pack_cleanup()
{
LOG_FUNC_ENTRY();
Chunk *pc = Chunk::GetHead();
while (pc->IsNotNullChunk())
{
LOG_CHUNK(LTOK, pc);
// look for template
if (pc->Is(CT_TEMPLATE)) // Issue #3309
{
Chunk *template_end = pc->GetNextType(CT_SEMICOLON, pc->GetLevel());
// look for a parameter pack
while (pc->IsNotNullChunk())
{
LOG_CHUNK(LTOK, pc);
if (pc->Is(CT_PARAMETER_PACK))
{
Chunk *parameter_pack = pc;
// look for a token with the same text
while (pc->IsNotNullChunk())
{
LOG_CHUNK(LTOK, pc);
if (pc == template_end)
{
break;
}
if (strcmp(pc->Text(), parameter_pack->Text()) == 0)
{
pc->SetType(CT_PARAMETER_PACK);
}
pc = pc->GetNext();
}
}
pc = pc->GetNext();
if (pc == template_end)
{
break;
}
}
}
pc = pc->GetNext();
}
} // parameter_pack_cleanup
|