1
0
Fork 0

fix warning about potentially unintialised variable

This commit is contained in:
Jan Steemann 2013-01-31 10:43:20 +01:00
parent 741510e8cb
commit 32dc7a2db2
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ int main (int argc, char* argv[]) {
} }
// import type // import type
bool ok; bool ok = false;
if (TypeImport == "csv") { if (TypeImport == "csv") {
cout << "Starting CSV import..." << endl; cout << "Starting CSV import..." << endl;