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
66
67
|
/**
* @file parameter_pack_cleanup.cpp
*
* @author Guy Maurel
* @license GPL v2+
*/
#include "parameter_pack_cleanup.h"
#include "chunk.h"
void parameter_pack_cleanup(void)
{
LOG_FUNC_ENTRY();
Chunk *pc = Chunk::GetHead();
while (pc->IsNotNullChunk())
{
LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, Text() is '%s'\n",
__func__, __LINE__, pc->orig_line, pc->orig_col, pc->Text());
// look for template
if (chunk_is_token(pc, CT_TEMPLATE)) // Issue #3309
{
Chunk *template_end = pc->GetNextType(CT_SEMICOLON, pc->level);
// look for a parameter pack
while (pc->IsNotNullChunk())
{
LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, Text() is '%s'\n",
__func__, __LINE__, pc->orig_line, pc->orig_col, pc->Text());
if (chunk_is_token(pc, CT_PARAMETER_PACK))
{
Chunk *parameter_pack = pc;
// look for a token with the same text
while (pc->IsNotNullChunk())
{
LOG_FMT(LTOK, "%s(%d): orig_line is %zu, orig_col is %zu, Text() is '%s'\n",
__func__, __LINE__, pc->orig_line, pc->orig_col, pc->Text());
if (pc == template_end)
{
break;
}
if (strcmp(pc->Text(), parameter_pack->Text()) == 0)
{
set_chunk_type(pc, CT_PARAMETER_PACK);
}
pc = pc->GetNext();
}
}
pc = pc->GetNext();
if (pc == template_end)
{
break;
}
}
}
pc = pc->GetNext();
}
} // parameter_pack_cleanup
|