diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2012-12-16 12:22:57 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2012-12-16 12:22:57 -0500 |
commit | 3717f0837b79bc37947896d9068ccff0825e916d (patch) | |
tree | ec4f5c854f619d0aa49d9ec2b6e6f5c0d10fa7f7 /src | |
parent | c1f856a17fc52a15cd6169146b66664291b0ca5f (diff) | |
download | postgresql-3717f0837b79bc37947896d9068ccff0825e916d.tar.gz postgresql-3717f0837b79bc37947896d9068ccff0825e916d.zip |
Tidy up from frontend Assert change.
Quiet compiler warnings noted by Peter Eisentraut.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/mb/encnames.c | 1 | ||||
-rw-r--r-- | src/backend/utils/mb/wchar.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/utils/mb/encnames.c b/src/backend/utils/mb/encnames.c index 7a3715750b0..9a05e573ffa 100644 --- a/src/backend/utils/mb/encnames.c +++ b/src/backend/utils/mb/encnames.c @@ -6,7 +6,6 @@ */ #ifdef FRONTEND #include "postgres_fe.h" -#define Assert(condition) #else #include "postgres.h" #include "utils/builtins.h" diff --git a/src/backend/utils/mb/wchar.c b/src/backend/utils/mb/wchar.c index e46bcf0006e..2fc17feb5eb 100644 --- a/src/backend/utils/mb/wchar.c +++ b/src/backend/utils/mb/wchar.c @@ -7,7 +7,6 @@ /* can be used in either frontend or backend */ #ifdef FRONTEND #include "postgres_fe.h" -#define Assert(condition) #else #include "postgres.h" #endif |