diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-05-22 15:43:41 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-05-22 15:43:41 +0200 |
commit | cd4e709ead8a3e97eee0ef7b362240986e18fbd5 (patch) | |
tree | 69dc4a360e53a83ac0d9243e40c672a34a568c2a /build/algorithm.cxx | |
parent | 2b0b06cbf4288746075a74c12ef233efc929a095 (diff) |
Get rid of gcc, clang warnings (-Wall)
Diffstat (limited to 'build/algorithm.cxx')
-rw-r--r-- | build/algorithm.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/algorithm.cxx b/build/algorithm.cxx index be63f99..e52d7f5 100644 --- a/build/algorithm.cxx +++ b/build/algorithm.cxx @@ -258,8 +258,10 @@ namespace build // Should have been handled by inline execute(). assert (false); case target_state::failed: - throw failed (); + break; } + + throw failed (); } target_state |