From 2b4c32c95f9cd3282ee834a2d7eeba9ab56eff0b Mon Sep 17 00:00:00 2001 From: Daniel Pfeifer Date: Fri, 25 Aug 2017 23:25:09 +0200 Subject: clang-format: format all code as Cpp11 --- Source/cmDepends.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/cmDepends.cxx') diff --git a/Source/cmDepends.cxx b/Source/cmDepends.cxx index a0775b3972..fc2bd0fb08 100644 --- a/Source/cmDepends.cxx +++ b/Source/cmDepends.cxx @@ -42,7 +42,7 @@ bool cmDepends::Write(std::ostream& makeDepends, std::ostream& internalDepends) std::vector pairs; cmSystemTools::ExpandListArgument(srcStr, pairs); - std::map > dependencies; + std::map> dependencies; for (std::vector::iterator si = pairs.begin(); si != pairs.end();) { // Get the source and object file. @@ -53,7 +53,7 @@ bool cmDepends::Write(std::ostream& makeDepends, std::ostream& internalDepends) std::string const& obj = *si++; dependencies[obj].insert(src); } - for (std::map >::const_iterator it = + for (std::map>::const_iterator it = dependencies.begin(); it != dependencies.end(); ++it) { -- cgit v1.2.1