diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-09-10 20:59:40 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-09-11 16:30:47 (GMT) |
commit | 158f7e31dc685859f5a53d88e965382c6361efb1 (patch) | |
tree | d5028d1e3371fdc075bdbd20aa6297459ed3c7fa /Source/cmState.cxx | |
parent | 08ce3f486e789275104a390d2d34f36a90c5fd2f (diff) | |
download | CMake-158f7e31dc685859f5a53d88e965382c6361efb1.zip CMake-158f7e31dc685859f5a53d88e965382c6361efb1.tar.gz CMake-158f7e31dc685859f5a53d88e965382c6361efb1.tar.bz2 |
cmMakefile: Use appropriate parameter name.
Diffstat (limited to 'Source/cmState.cxx')
-rw-r--r-- | Source/cmState.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmState.cxx b/Source/cmState.cxx index b30c10b..b66f403 100644 --- a/Source/cmState.cxx +++ b/Source/cmState.cxx @@ -1376,11 +1376,11 @@ cmBacktraceRange GetPropertyBacktraces(T const& content, template <typename T, typename U, typename V> void AppendEntry(T& content, U& backtraces, V& endContentPosition, - const std::string& vec, const cmListFileBacktrace& lfbt) + const std::string& value, const cmListFileBacktrace& lfbt) { assert(endContentPosition == content.size()); - content.push_back(vec); + content.push_back(value); backtraces.push_back(lfbt); endContentPosition = content.size(); |