X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fassertion.h;h=0abce53c5c3be2b18bb7f0303484bd85dbca59bb;hp=b208b8474b61fa3327dc1050740fb12598cdf4e7;hb=8dc09f48182574d792a2ed7c37b66831d9267a6c;hpb=24fe247f9ed16114a765a01c593fec5c4a2f591c diff --git a/ginac/assertion.h b/ginac/assertion.h index b208b847..0abce53c 100644 --- a/ginac/assertion.h +++ b/ginac/assertion.h @@ -3,7 +3,7 @@ * Assertion macro definition. */ /* - * GiNaC Copyright (C) 1999 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,12 +23,13 @@ #ifndef __GINAC_ASSERTION_H__ #define __GINAC_ASSERTION_H__ -#include - #if !defined(GINAC_ASSERT) #if defined(DO_GINAC_ASSERT) +#include +/** Assertion macro for checking invariances. */ #define GINAC_ASSERT(X) assert(X) #else +/** Assertion macro for checking invariances. */ #define GINAC_ASSERT(X) ((void)0) #endif #endif