blob: c61f9d1ab85ab5228046188944e89553cfe2a90c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// 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;
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();
}
|