summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-04-27 19:13:58 (GMT)
committerGitHub <noreply@github.com>2021-04-27 19:13:58 (GMT)
commitf503f1fb2f803efa575c8204609d3b46d940054d (patch)
tree8c1fd51ce4b9bb2db5a36ab43244dd516ec50631 /src
parent12f15fc1db3a8e95bcbabaa4f899f0b717003f1d (diff)
parent61cbf1af5ea83f0d0b299cb53510aed317c77f70 (diff)
downloadDoxygen-f503f1fb2f803efa575c8204609d3b46d940054d.zip
Doxygen-f503f1fb2f803efa575c8204609d3b46d940054d.tar.gz
Doxygen-f503f1fb2f803efa575c8204609d3b46d940054d.tar.bz2
Merge pull request #8513 from albert-github/feature/bug_assert_message
Error messages on ASSERTS
Diffstat (limited to 'src')
-rw-r--r--src/qcstring.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcstring.h b/src/qcstring.h
index f7cccb7..886573a 100644
--- a/src/qcstring.h
+++ b/src/qcstring.h
@@ -42,7 +42,7 @@ typedef unsigned long ulong;
typedef int64_t int64;
typedef uint64_t uint64;
#define ASSERT(x) if ( !(x) )\
- fprintf(stderr,"ASSERT: \"%s\" in %s (%d)",#x,__FILE__,__LINE__)
+ fprintf(stderr,"ASSERT: \"%s\" in %s (%d)\n",#x,__FILE__,__LINE__)
/*****************************************************************************