summaryrefslogtreecommitdiff
path: root/src/main/getopt.cpp
diff options
context:
space:
mode:
authorChristopher L. Conway <christopherleeconway@gmail.com>2010-10-20 21:49:34 +0000
committerChristopher L. Conway <christopherleeconway@gmail.com>2010-10-20 21:49:34 +0000
commit91829206b4783a532453eab3c69de83b8b510286 (patch)
tree8b125cd8d849876eb91ab3ade96c15d5ecee891e /src/main/getopt.cpp
parent5a8b70ca247b52f7ac3804bae71fdc09cd4fe8c3 (diff)
Changing --no-early-type-checking to --no-type-checking
Disabling type checking when --no-checking is given (Fixes: #221)
Diffstat (limited to 'src/main/getopt.cpp')
-rw-r--r--src/main/getopt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/getopt.cpp b/src/main/getopt.cpp
index 57aa84a57..5ddeced5d 100644
--- a/src/main/getopt.cpp
+++ b/src/main/getopt.cpp
@@ -128,7 +128,7 @@ static struct option cmdlineOptions[] = {
{ "no-interactive", no_argument , NULL, NO_INTERACTIVE },
{ "produce-models", no_argument , NULL, PRODUCE_MODELS},
{ "produce-assignments", no_argument, NULL, PRODUCE_ASSIGNMENTS},
- { "no-early-type-checking", no_argument, NULL, NO_EARLY_TYPE_CHECKING},
+ { "no-type-checking", no_argument, NULL, NO_EARLY_TYPE_CHECKING},
{ NULL , no_argument , NULL, '\0' }
};/* if you add things to the above, please remember to update usage.h! */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback