Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0126db2 commit 337c0b0Copy full SHA for 337c0b0
src/tools/pginclude/pgrminclude
@@ -43,8 +43,8 @@ compile_file() {
43
[ "$INCLUDE" = "postgres_fe.h" ] && continue
44
[ "$INCLUDE" = "pg_config.h" ] && continue
45
[ "$INCLUDE" = "c.h" ] && continue
46
- # CppAsString2 will expand undefined identifiers, so skip files that use it
47
- grep -q '\<CppAsString2\>' "$FILE" && continue
+ # Stringify macros will expand undefined identifiers, so skip files that use it
+ egrep -q '\<(CppAsString2?|CppConcat)\>' "$FILE" && continue
48
49
# preserve configure-specific includes
50
# these includes are surrounded by #ifdef's
0 commit comments