[Cmake-commits] CMake branch, next, updated. v2.8.11.2-3963-gf4e4f45
Zack Galbreath
zack.galbreath at kitware.com
Thu Aug 22 15:23:00 EDT 2013
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via f4e4f4542ed8510dfb3040b1cf26ef7f1525075e (commit)
via 711083e7f53a0ebd8d8346fd7734546791fecd41 (commit)
via 374af6529a08fc1c9c9c16e5d55929c450db6e35 (commit)
from 3d07b36e617279ec119c86df898b85a7689de3a8 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f4e4f4542ed8510dfb3040b1cf26ef7f1525075e
commit f4e4f4542ed8510dfb3040b1cf26ef7f1525075e
Merge: 3d07b36 711083e
Author: Zack Galbreath <zack.galbreath at kitware.com>
AuthorDate: Thu Aug 22 15:22:59 2013 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Aug 22 15:22:59 2013 -0400
Merge topic 'fix_lineoffset_warning' into next
711083e silence dashboard warning
374af65 CMake Nightly Date Stamp
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=711083e7f53a0ebd8d8346fd7734546791fecd41
commit 711083e7f53a0ebd8d8346fd7734546791fecd41
Author: Zack Galbreath <zack.galbreath at kitware.com>
AuthorDate: Thu Aug 22 15:20:30 2013 -0400
Commit: Zack Galbreath <zack.galbreath at kitware.com>
CommitDate: Thu Aug 22 15:20:30 2013 -0400
silence dashboard warning
This commit resolves the following warning:
CMake/Source/CTest/cmParseGTMCoverage.cxx:108:47:
warning: 'lineoffset' may be used uninitialized in this function
diff --git a/Source/CTest/cmParseGTMCoverage.cxx b/Source/CTest/cmParseGTMCoverage.cxx
index 5dfcfe5..2b42677 100644
--- a/Source/CTest/cmParseGTMCoverage.cxx
+++ b/Source/CTest/cmParseGTMCoverage.cxx
@@ -98,7 +98,7 @@ bool cmParseGTMCoverage::ReadMCovFile(const char* file)
bool found = this->FindMumpsFile(routine, filepath);
if(found)
{
- int lineoffset;
+ int lineoffset = 0;
if(this->FindFunctionInMumpsFile(filepath,
function,
lineoffset))
-----------------------------------------------------------------------
Summary of changes:
Source/CMakeVersion.cmake | 2 +-
Source/CTest/cmParseGTMCoverage.cxx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list