forked from qt-creator/qt-creator
These are converted to IdExpr(SimpleName(token)) initializers. Change-Id: I1e85c4b261ca028dc75ffe6c00e1090630c2957c Reviewed-by: hjk <qthjk@ovi.com>
9 lines
159 B
C++
9 lines
159 B
C++
class C {
|
|
C() = default;
|
|
C(const C &) = delete;
|
|
C &operator=(const C &) = default;
|
|
|
|
void foo() = delete;
|
|
template <class T> void bar(T) = delete;
|
|
};
|