From 8a9b096aef3760cab09f50ce3f5bc2390349e399 Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Sat, 29 Oct 2022 14:37:57 +0100 Subject: [PATCH] config-store: Fix clang-tidy warnings --- src/config-store/model/model-node-creator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config-store/model/model-node-creator.cc b/src/config-store/model/model-node-creator.cc index dcae70944..c5df8133e 100644 --- a/src/config-store/model/model-node-creator.cc +++ b/src/config-store/model/model-node-creator.cc @@ -30,7 +30,7 @@ void ModelCreator::Build(GtkTreeStore* treestore) { m_treestore = treestore; - m_iters.push_back(0); + m_iters.push_back(nullptr); // this function will go through all the objects and call on them // DoStartVisitObject, DoIterate and DoEndVisitObject Iterate();