From 2e14df7561ee10c7a408bd3ebb4944016ecdd1f4 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 31 Jul 2019 17:21:41 +0200 Subject: Some clang-tidy -use-modernize-nullptr Change-Id: I1bed5e85a5b7948d08502a72a10f80baa075c204 Reviewed-by: Thomas Hartmann --- src/libs/3rdparty/cplusplus/Literals.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libs/3rdparty/cplusplus/Literals.cpp') diff --git a/src/libs/3rdparty/cplusplus/Literals.cpp b/src/libs/3rdparty/cplusplus/Literals.cpp index 3300d47c31..d778c2f0cc 100644 --- a/src/libs/3rdparty/cplusplus/Literals.cpp +++ b/src/libs/3rdparty/cplusplus/Literals.cpp @@ -29,7 +29,7 @@ using namespace CPlusPlus; //////////////////////////////////////////////////////////////////////////////// Literal::Literal(const char *chars, int size) - : _next(0), _index(0) + : _next(nullptr), _index(0) { _chars = new char[size + 1]; -- cgit v1.2.1