Skip to content

Commit fc4bf4a

Browse files
committed
changed namespace naming
1 parent 76653b8 commit fc4bf4a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libraries/multi_index_lru/src/main_benchmark.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
using namespace USERVER_NAMESPACE;
88

99
int main() {
10-
benchmarks::simple_benchmark<lru_boost_list::LRUCacheContainer>("boost_list_output.txt");
11-
benchmarks::google_benchmark<lru_boost_list::LRUCacheContainer>();
10+
benchmarks::simple_benchmark<multi_index_lru::LRUCacheContainer>("boost_list_output.txt");
11+
benchmarks::google_benchmark<multi_index_lru::LRUCacheContainer>();
1212

1313
benchmarks::google_benchmark_init("google_output.txt");
1414
benchmarks::google_benchmark_run();

libraries/multi_index_lru/src/main_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
using namespace USERVER_NAMESPACE;
77

88
int main() {
9-
test_lru_users<lru_boost_list::LRUCacheContainer>();
10-
test_lru_products<lru_boost_list::LRUCacheContainer>();
9+
test_lru_users<multi_index_lru::LRUCacheContainer>();
10+
test_lru_products<multi_index_lru::LRUCacheContainer>();
1111
std::cout << "all tests success" << std::endl;
1212
return 0;
1313
}

0 commit comments

Comments
 (0)