Skipping ContractionCleantup entirely. Avoids a big allocation. Removing

DELETE() macro.
This commit is contained in:
DennisOSRM
2012-04-12 19:35:47 +02:00
parent b16f3f91d9
commit e104017d4c
7 changed files with 35 additions and 34 deletions
+2 -2
View File
@@ -126,8 +126,8 @@ int main (int argc, char *argv[]) {
std::cout << std::endl << "[server] shutting down" << std::endl;
s->Stop();
t.join();
DELETE(s);
DELETE(objects);
delete s;
delete objects;
} catch (std::exception& e) {
std::cerr << "[fatal error] exception: " << e.what() << std::endl;
}