diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-03-01 17:30:05 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-03-01 17:30:05 +0000 |
commit | 3826677692e9e12fb42bc5cded26960d2137faec (patch) | |
tree | b350b3c21965d2d013e9beb200c49a33961c9936 /gdb/gdb_assert.h | |
parent | 2ad43c4f0980b1ad15ddbde7bd6e9b9b7621c72c (diff) | |
download | gdb-3826677692e9e12fb42bc5cded26960d2137faec.zip gdb-3826677692e9e12fb42bc5cded26960d2137faec.tar.gz gdb-3826677692e9e12fb42bc5cded26960d2137faec.tar.bz2 |
Document pragmatics of why gdb_assert() is lowercase.
Diffstat (limited to 'gdb/gdb_assert.h')
-rw-r--r-- | gdb/gdb_assert.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/gdb_assert.h b/gdb/gdb_assert.h index c9979db..4f0bcdc 100644 --- a/gdb/gdb_assert.h +++ b/gdb/gdb_assert.h @@ -21,6 +21,11 @@ #ifndef GDB_ASSERT_H #define GDB_ASSERT_H +/* PRAGMATICS: "gdb_assert.h":gdb_assert() is a lower case (rather + than upper case) macro since that provides the closest fit to the + existing lower case macro <assert.h>:assert() that it is + replacing. */ + #define gdb_assert(expr) \ ((void) ((expr) ? 0 : \ (gdb_assert_fail (#expr, __FILE__, __LINE__, ASSERT_FUNCTION), 0))) |