summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/src/flag_decltype.h
blob: 293fcd02a89eb6ada5c99c42aeb6053a80c108d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * @file flag_decltype.h
 *
 * @license GPL v2+
 */

#ifndef FLAG_DECLTYPE_INCLUDED
#define FLAG_DECLTYPE_INCLUDED

#include "chunk.h"

/**
 * Flags all chunks within a cpp decltype expression from the opening
 * brace to the closing brace
 *
 * @return Returns true if expression is a valid decltype expression
 */
bool flag_cpp_decltype(Chunk *pc);


#endif