summaryrefslogtreecommitdiff
path: root/pcrecpparg.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'pcrecpparg.h.in')
-rw-r--r--pcrecpparg.h.in22
1 files changed, 11 insertions, 11 deletions
diff --git a/pcrecpparg.h.in b/pcrecpparg.h.in
index ad17296..3e866cf 100644
--- a/pcrecpparg.h.in
+++ b/pcrecpparg.h.in
@@ -148,17 +148,17 @@ inline bool Arg::Parse(const char* str, int n) const {
inline Arg CRadix(type* ptr) { \
return Arg(ptr, Arg::parse_ ## name ## _cradix); }
-MAKE_INTEGER_PARSER(short, short);
-MAKE_INTEGER_PARSER(unsigned short, ushort);
-MAKE_INTEGER_PARSER(int, int);
-MAKE_INTEGER_PARSER(unsigned int, uint);
-MAKE_INTEGER_PARSER(long, long);
-MAKE_INTEGER_PARSER(unsigned long, ulong);
-#if @pcre_have_long_long@
-MAKE_INTEGER_PARSER(long long, longlong);
-#endif
-#if @pcre_have_ulong_long@
-MAKE_INTEGER_PARSER(unsigned long long, ulonglong);
+MAKE_INTEGER_PARSER(short, short) /* */
+MAKE_INTEGER_PARSER(unsigned short, ushort) /* */
+MAKE_INTEGER_PARSER(int, int) /* Don't use semicolons */
+MAKE_INTEGER_PARSER(unsigned int, uint) /* after these statement */
+MAKE_INTEGER_PARSER(long, long) /* because they can cause */
+MAKE_INTEGER_PARSER(unsigned long, ulong) /* compiler warnings if */
+#if @pcre_have_long_long@ /* the checking level is */
+MAKE_INTEGER_PARSER(long long, longlong) /* turned up high enough. */
+#endif /* */
+#if @pcre_have_ulong_long@ /* */
+MAKE_INTEGER_PARSER(unsigned long long, ulonglong) /* */
#endif
#undef PCRE_IS_SET