Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C++ by AlbertZeyer ( 17 years ago )
#include <iostream>
#include <cassert>
Â
using namespace std;
Â
#define GIVE_WARNINGÂ Â 0/0
Â
#define ASSERT(e) Â Â Â {
if(__builtin_constant_p(e)) { 0 / ((e) ? 0 : 1); }
else assert(e); }
Â
int main() {
    ASSERT(true);
    ASSERT(false);
}
Â
Revise this Paste
Parent: 5876