aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/utils/macroexpander.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2018-05-07 17:33:02 +0200
committerOrgad Shaneh <orgads@gmail.com>2018-05-13 19:53:14 +0000
commit63ef88d015006b9e60fe5f4fae3c8a15c52ad612 (patch)
tree81a15c3ab35acb4bae804e97e6934053ed2ef521 /src/libs/utils/macroexpander.h
parentebf2d6f4e25282d0aeedfaccfddbb333c59f606b (diff)
Utils: Consistently use nullptr
Fixed by clang-tidy modernize-use-nullptr. Change-Id: I93edae67271a521e3b2a1f97f486e5fa97009836 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/libs/utils/macroexpander.h')
-rw-r--r--src/libs/utils/macroexpander.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/utils/macroexpander.h b/src/libs/utils/macroexpander.h
index a8fd1afdabe..ff96eb10899 100644
--- a/src/libs/utils/macroexpander.h
+++ b/src/libs/utils/macroexpander.h
@@ -52,7 +52,7 @@ public:
bool resolveMacro(const QString &name, QString *ret) const;
- QString value(const QByteArray &variable, bool *found = 0) const;
+ QString value(const QByteArray &variable, bool *found = nullptr) const;
QString expand(const QString &stringWithVariables) const;
QByteArray expand(const QByteArray &stringWithVariables) const;