You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
364 B

/**
* @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