mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
33 lines
751 B
C++
33 lines
751 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();
|
|
|
|
void wasserted(const char *msg, const char *file, unsigned line) {
|
|
cout << "Assertion failure " << msg << endl;
|
|
cout << ' ' << file << ' ' << line << endl;
|
|
sayDbContext();
|
|
}
|
|
|
|
void asserted(const char *msg, const char *file, unsigned line) {
|
|
wasserted(msg, file, line);
|
|
throw AssertionException();
|
|
}
|