Tokenizer: Do not remove 'constexpr'
This commit is contained in:
parent
e7d61f399a
commit
2f400b40ba
|
@ -9102,8 +9102,8 @@ void Tokenizer::simplifyKeyword()
|
|||
}
|
||||
|
||||
if (isCPP() && mSettings->standards.cpp >= Standards::CPP11) {
|
||||
while (tok->str() == "constexpr") {
|
||||
tok->deleteThis();
|
||||
if (tok->str() == "constexpr") {
|
||||
tok->str("const");
|
||||
}
|
||||
|
||||
// final:
|
||||
|
|
|
@ -3272,7 +3272,7 @@ private:
|
|||
ASSERT_EQUALS("int foo ( ) { }", tok("inline int foo ( ) { }", true));
|
||||
ASSERT_EQUALS("int foo ( ) { }", tok("__inline int foo ( ) { }", true));
|
||||
ASSERT_EQUALS("int foo ( ) { }", tok("__forceinline int foo ( ) { }", true));
|
||||
ASSERT_EQUALS("int foo ( ) { }", tok("constexpr int foo() { }", true));
|
||||
ASSERT_EQUALS("", tok("constexpr int x = 3;", true));
|
||||
ASSERT_EQUALS("void f ( ) { int final [ 10 ] ; }", tok("void f() { int final[10]; }", true));
|
||||
ASSERT_EQUALS("int * p ;", tok("int * __restrict p;", "test.c"));
|
||||
ASSERT_EQUALS("int * * p ;", tok("int * __restrict__ * p;", "test.c"));
|
||||
|
|
Loading…
Reference in New Issue