forked from qt-creator/qt-creator
[C++] Rewrite of the preprocessor.
This rewrite fixes a couple of issues with the pre-processor. It now supports: - macros in macro bodies - stringification of parameters [cpp.stringize] - the concatenation operator [cpp.concat] - #include MACRO_HERE - defined() inside macro bodies used in pp-conditions. Change-Id: Ifdb78041fb6afadf44f939a4bd66ce2832b8601f Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
This commit is contained in:
13
tests/auto/cplusplus/preprocessor/data/empty-macro.2.cpp
Normal file
13
tests/auto/cplusplus/preprocessor/data/empty-macro.2.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#define Q_DECL_EQ_DELETE
|
||||
#define Q_DISABLE_COPY(Class) \
|
||||
Class(const Class &) Q_DECL_EQ_DELETE;\
|
||||
Class &operator=(const Class &) Q_DECL_EQ_DELETE;
|
||||
|
||||
class Test {
|
||||
private:
|
||||
Q_DISABLE_COPY(Test)
|
||||
|
||||
public:
|
||||
Test();
|
||||
};
|
||||
|
Reference in New Issue
Block a user