diff options
Diffstat (limited to 'cpp/demo/Freeze/customEvictor/Server.cpp')
-rw-r--r-- | cpp/demo/Freeze/customEvictor/Server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/demo/Freeze/customEvictor/Server.cpp b/cpp/demo/Freeze/customEvictor/Server.cpp index 81ece9ace69..190f684e4e1 100644 --- a/cpp/demo/Freeze/customEvictor/Server.cpp +++ b/cpp/demo/Freeze/customEvictor/Server.cpp @@ -16,6 +16,7 @@ #include <SimpleEvictor.h> using namespace std; +using namespace Warehouse; const int objectCount = 10000; const int evictorSize = 8000; @@ -34,7 +35,6 @@ main(int argc, char* argv[]) return app.main(argc, argv, "config.server"); } - int WarehouseServer::run(int argc, char* argv[]) { @@ -67,7 +67,7 @@ WarehouseServer::run(int argc, char* argv[]) // // Populate database with objectCount entries // - Warehouse::ItemInfo info; + ItemInfo info; connection->beginTransaction(); |