mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-09 02:03:04 +00:00
19 lines
514 B
C++
19 lines
514 B
C++
/*
|
|
Copyright (C) 2005 by Isaac Clerencia <isaac@sindominio.net>
|
|
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License.
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY.
|
|
|
|
See the COPYING file for more details.
|
|
*/
|
|
#ifndef WASSERT_HPP_INCLUDED
|
|
#define WASSERT_HPP_INCLUDED
|
|
|
|
#include <cassert>
|
|
#define wassert assert
|
|
|
|
#endif
|