mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 00:56:44 +01:00
32 lines
726 B
C++
32 lines
726 B
C++
// stdafx.cpp : source file that includes just the standard includes
|
|
// db.pch will be the pre-compiled header
|
|
// stdafx.obj will contain the pre-compiled type information
|
|
|
|
#include "stdafx.h"
|
|
|
|
// TODO: reference any additional headers you need in STDAFX.H
|
|
// and not in this file
|
|
|
|
struct MyAsserts {
|
|
MyAsserts() {
|
|
|
|
}
|
|
} myassertsstdafx;
|
|
|
|
#undef assert
|
|
|
|
#undef yassert
|
|
#include "assert.h"
|
|
|
|
void sayDbContext(const char *p = 0);
|
|
|
|
void wasserted(const char *msg, const char *file, unsigned line) {
|
|
problem() << "Assertion failure " << msg << ' ' << file << ' ' << line << endl;
|
|
sayDbContext();
|
|
}
|
|
|
|
void asserted(const char *msg, const char *file, unsigned line) {
|
|
wasserted(msg, file, line);
|
|
throw AssertionException();
|
|
}
|