forked from qt-creator/qt-creator
Some clang-tidy -use-modernize-nullptr
Change-Id: I1bed5e85a5b7948d08502a72a10f80baa075c204 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
@@ -112,9 +112,9 @@ public:
|
||||
|
||||
// symbols
|
||||
Namespace *newNamespace();
|
||||
Struct *newStruct(Scope *scope = 0);
|
||||
Block *newBlock(Scope *scope = 0);
|
||||
Function *newFunction(Scope *scope = 0);
|
||||
Struct *newStruct(Scope *scope = nullptr);
|
||||
Block *newBlock(Scope *scope = nullptr);
|
||||
Function *newFunction(Scope *scope = nullptr);
|
||||
Argument *newArgument(Function *function, const QString &name, const Type *type);
|
||||
Variable *newVariable(Scope *scope, const QString &name, const Type *type, int qualifiers = 0);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user