From 62e5f722899cfa7c51791be7697c9030aee3a19b Mon Sep 17 00:00:00 2001 From: Regina Pfeifer Date: Fri, 23 Aug 2019 23:25:56 +0200 Subject: clang-tidy: Replace typedef with using --- Source/cmQtAutoGen.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/cmQtAutoGen.cxx') diff --git a/Source/cmQtAutoGen.cxx b/Source/cmQtAutoGen.cxx index d890f8e001..83df3352c2 100644 --- a/Source/cmQtAutoGen.cxx +++ b/Source/cmQtAutoGen.cxx @@ -24,8 +24,8 @@ void MergeOptions(std::vector& baseOpts, std::vector const& newOpts, std::initializer_list valueOpts, bool isQt5) { - typedef std::vector::iterator Iter; - typedef std::vector::const_iterator CIter; + using Iter = std::vector::iterator; + using CIter = std::vector::const_iterator; if (newOpts.empty()) { return; } -- cgit v1.2.1