Issue name says it all.
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@761736
13f79535-47bb-0310-9956-
ffa450edef68
PROGRAM = 2
};
+/**
+ * Strictness level
+ */
+extern int g_strict;
+
/**
* The master program parse tree. This is accessed from within the parser code
* to build up the program elements.
*/
int g_debug = 0;
+/**
+ * Strictness level
+ */
+int g_strict = 127;
+
/**
* Warning level
*/
} else if (strcmp(arg, "-nowarn") == 0) {
g_warn = 0;
} else if (strcmp(arg, "-strict") == 0) {
+ g_strict = 255;
g_warn = 2;
} else if (strcmp(arg, "-v") == 0 || strcmp(arg, "-verbose") == 0 ) {
g_verbose = 1;
pdebug("tok_int_constant : Field -> FieldType tok_identifier");
if ($2 < 0) {
pwarning(1, "No field key specified for %s, resulting protocol may have conflicts or not be backwards compatible!\n", $5);
+ if (g_strict >= 192) {
+ yyerror("Implicit field keys are deprecated and not allowed with -strict");
+ exit(1);
+ }
}
$$ = new t_field($4, $5, $2);
$$->set_req($3);