source: src/include/assert.h @ 95a6cac

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 95a6cac was 12756de, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

add missing directory for new assert

  • Property mode set to 100644
File size: 921 bytes
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// assert.h --
8//
9// Author           : Peter A. Buhr
10// Created On       : Thu Aug 18 13:19:26 2016
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Aug 18 13:25:55 2016
13// Update Count     : 4
14//
15
16#include_next <assert.h>
17
18#define __STRINGIFY__(str) #str
19#define __VSTRINGIFY__(str) __STRINGIFY__(str)
20#define assertf(expr, fmt, ...) ((expr) ? static_cast<void>(0) : __assert_fail_f(__VSTRINGIFY__(expr), __FILE__, __LINE__, __PRETTY_FUNCTION__, fmt, ## __VA_ARGS__ ))
21
22void __assert_fail_f( const char *assertion, const char *file, unsigned int line, const char *function, const char *fmt, ... );
23
24// Local Variables: //
25// tab-width: 4 //
26// mode: c++ //
27// compile-command: "make install" //
28// End: //
Note: See TracBrowser for help on using the repository browser.