diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-24 05:45:26 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-25 21:06:33 (GMT) |
commit | cd6293cdf8cf04fca70497a2474989b773fe922e (patch) | |
tree | bb854cd1bd6649bc4858314b055bd464ff76f9cc | |
parent | de6b2895824fdac9a25fa9cd2f0f7c38b29547dc (diff) | |
download | CMake-cd6293cdf8cf04fca70497a2474989b773fe922e.zip CMake-cd6293cdf8cf04fca70497a2474989b773fe922e.tar.gz CMake-cd6293cdf8cf04fca70497a2474989b773fe922e.tar.bz2 |
cmMakefile: Fix style.
-rw-r--r-- | Source/cmMakefile.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 3289881..1550c7b 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2072,7 +2072,8 @@ void cmMakefile::AddGlobalLinkInformation(const std::string& name, if(std::find(this->LinkDirectories.begin(), this->LinkDirectories.end(), newdir) == this->LinkDirectories.end()) - {target.AddLinkDirectory(*j); + { + target.AddLinkDirectory(*j); } } } |