diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-11-17 10:17:07 -0800 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-11-17 10:17:07 -0800 |
commit | 63fa175a9bc2722b4e6e6359ee75f4867d1fc0df (patch) | |
tree | f124596163550106191495f6c22f477d85f0cb09 /util | |
parent | e60c3ea61c878f5516956298b01da70dc4722922 (diff) | |
download | mongo-63fa175a9bc2722b4e6e6359ee75f4867d1fc0df.tar.gz |
better failure message
Diffstat (limited to 'util')
-rw-r--r-- | util/assert_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/assert_util.h b/util/assert_util.h index 4be17b4a1a6..9e1e4b9c595 100644 --- a/util/assert_util.h +++ b/util/assert_util.h @@ -165,5 +165,5 @@ namespace mongo { problem() << "caught boost exception: " << e.what() << endl; \ assert( false ); \ } catch ( ... ) { \ - assert( false ); \ + massert( "unknown boost failed" , false ); \ } |