lru.hpp (298B)
1 #ifndef LRU_HPP 2 #define LRU_HPP 3 4 #include <atomic> 5 #include <cstddef> 6 #include <cstdint> 7 8 #include "benchmark.h" 9 10 namespace lf { 11 12 template <typename T> 13 struct lru { 14 private: 15 struct entry { 16 }; 17 }; 18 19 struct benchmark 20 lru_benchmark(void) 21 { 22 return {"Lock-free LRU Cache"}; 23 } 24 25 }; 26 27 #endif /* LRU_HPP */