[Cmake-commits] CMake branch, next, updated. v2.8.12.1-6105-g9d11bfe
Stephen Kelly
steveire at gmail.com
Sun Dec 8 01:03:07 EST 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 9d11bfea81aef715e2b17d70b45590c759a35623 (commit)
via 03830fe20377dac826ecefb9f01e8394bd96fa3d (commit)
from df3e56586d47d1317be3115e068080fbc6436ee0 (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=9d11bfea81aef715e2b17d70b45590c759a35623
commit 9d11bfea81aef715e2b17d70b45590c759a35623
Merge: df3e565 03830fe
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Dec 8 01:03:05 2013 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun Dec 8 01:03:05 2013 -0500
Merge topic 'INTERFACE_AUTOUIC_OPTIONS' into next
03830fe Add missing returns.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=03830fe20377dac826ecefb9f01e8394bd96fa3d
commit 03830fe20377dac826ecefb9f01e8394bd96fa3d
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Dec 8 07:02:05 2013 +0100
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Sun Dec 8 07:02:05 2013 +0100
Add missing returns.
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index c1e4eee..28de897 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -4376,6 +4376,7 @@ std::string compatibilityType(CompatibleType t)
return "Numeric minimum compatibility";
}
assert(!"Unreachable!");
+ return "";
}
//----------------------------------------------------------------------------
@@ -4391,6 +4392,7 @@ std::string compatibilityAgree(CompatibleType t, bool dominant)
return dominant ? "(Dominant)\n" : "(Ignored)\n";
}
assert(!"Unreachable!");
+ return "";
}
//----------------------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
Source/cmTarget.cxx | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list