diff options
Diffstat (limited to 'src/include/postgres_fe.h')
-rw-r--r-- | src/include/postgres_fe.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/include/postgres_fe.h b/src/include/postgres_fe.h index af31227b0ba..0f35eccc748 100644 --- a/src/include/postgres_fe.h +++ b/src/include/postgres_fe.h @@ -24,16 +24,4 @@ #include "c.h" -/* - * Assert() can be used in both frontend and backend code. In frontend code it - * just calls the standard assert, if it's available. If use of assertions is - * not configured, it does nothing. - */ -#ifdef USE_ASSERT_CHECKING -#include <assert.h> -#define Assert(p) assert(p) -#else -#define Assert(p) -#endif - #endif /* POSTGRES_FE_H */ |