forked from qt-creator/qt-creator
Change-Id: I9c9bc9556234ec321c6e3723f5276a0b66f6c90a Reviewed-by: Robert Loehning <robert.loehning@digia.com>
15 lines
159 B
C++
15 lines
159 B
C++
#include "testfile.h"
|
|
|
|
class SomeClass
|
|
{
|
|
public:
|
|
SomeClass() {}
|
|
void function1(int a);
|
|
};
|
|
|
|
bool function1(int a) {
|
|
SOME_MACRO_NAME(a)
|
|
return a;
|
|
}
|
|
|