2007-01-31 05:21:10 +01:00
|
|
|
/*
|
2010-05-31 22:12:06 +02:00
|
|
|
* Copyright (c) 2007-2010 Stephen Williams (steve@icarus.com)
|
2007-01-31 05:21:10 +01:00
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
2012-08-29 03:41:23 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2007-01-31 05:21:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __ivl_assert_h
|
|
|
|
|
#define __ivl_assert_h
|
|
|
|
|
|
2010-11-01 22:39:34 +01:00
|
|
|
# include <cstdlib>
|
2007-01-31 05:21:10 +01:00
|
|
|
|
|
|
|
|
#define ivl_assert(tok, expression) \
|
2010-11-02 19:34:12 +01:00
|
|
|
do { \
|
|
|
|
|
if (! (expression)) { \
|
|
|
|
|
cerr << (tok).get_fileline() << ": assert: " \
|
|
|
|
|
<< __FILE__ << ":" << __LINE__ \
|
|
|
|
|
<< ": failed assertion " << #expression << endl; \
|
|
|
|
|
abort(); \
|
|
|
|
|
} \
|
|
|
|
|
} while (0)
|
2007-01-31 05:21:10 +01:00
|
|
|
|
|
|
|
|
#endif
|