diff options
author | Dwight <dmerriman@gmail.com> | 2008-08-25 16:46:39 -0400 |
---|---|---|
committer | Dwight <dmerriman@gmail.com> | 2008-08-25 16:46:39 -0400 |
commit | ca08e48791b87cfb248ed3cf10c1852d788ae029 (patch) | |
tree | c1b75803c486f6b28524a04c2e95f50f15b0fb06 /stdafx.cpp | |
parent | 94f9bdee473f53837e5ec052526f40d857eb9d1e (diff) | |
download | mongo-ca08e48791b87cfb248ed3cf10c1852d788ae029.tar.gz |
repl tweaks
Diffstat (limited to 'stdafx.cpp')
-rw-r--r-- | stdafx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdafx.cpp b/stdafx.cpp index f499f8b9bc0..89c5194be32 100644 --- a/stdafx.cpp +++ b/stdafx.cpp @@ -46,8 +46,8 @@ void asserted(const char *msg, const char *file, unsigned line) { throw AssertionException(); } -void uasserted(const char *msg, const char *file, unsigned line) { - problem() << "User Assertion failure " << msg << ' ' << file << ' ' << line << endl; +void uasserted(const char *msg) { + problem() << "User Assertion " << msg << endl; throw AssertionException(); } |