summaryrefslogtreecommitdiff
path: root/examples/sets-translate/sets_translate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/sets-translate/sets_translate.cpp')
-rw-r--r--examples/sets-translate/sets_translate.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/examples/sets-translate/sets_translate.cpp b/examples/sets-translate/sets_translate.cpp
index aef3843f8..a310a2e6b 100644
--- a/examples/sets-translate/sets_translate.cpp
+++ b/examples/sets-translate/sets_translate.cpp
@@ -250,15 +250,18 @@ public:
};
-int main(int argc, char* argv[])
+int main(int argc, char* argv[])
{
try {
- // Get the filename
+ // Get the filename
string input;
- if(argc > 1) input = string(argv[1]);
- else input = "<stdin>";
+ if(argc > 1){
+ input = string(argv[1]);
+ } else {
+ input = "<stdin>";
+ }
// Create the expression manager
Options options;
@@ -279,7 +282,7 @@ int main(int argc, char* argv[])
vector<string> info_tags;
vector<string> info_data;
vector<Expr> assertions;
-
+
Command* cmd = NULL;
CommandSequence commandsSequence;
bool logicisset = false;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback