diff --git a/include/utils/LruCache.h b/include/utils/LruCache.h index af3931596..2a70d760a 100644 --- a/include/utils/LruCache.h +++ b/include/utils/LruCache.h @@ -14,6 +14,9 @@ * limitations under the License. */ +#ifndef ANDROID_UTILS_LRU_CACHE_H +#define ANDROID_UTILS_LRU_CACHE_H + #include #include #include @@ -197,3 +200,5 @@ void LruCache::rehash(size_t newCapacity) { } } + +#endif // ANDROID_UTILS_LRU_CACHE_H