Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 98fc88d3 authored by Romain Guy's avatar Romain Guy
Browse files

Add #ifndef to prevent multiple definitions

Change-Id: Ib861eee0f333fe29290437b7e67623622d8dabd0
parent 7fbe8e12
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -14,6 +14,9 @@
 * limitations under the License.
 */

#ifndef ANDROID_UTILS_LRU_CACHE_H
#define ANDROID_UTILS_LRU_CACHE_H

#include <utils/BasicHashtable.h>
#include <utils/GenerationCache.h>
#include <utils/UniquePtr.h>
@@ -197,3 +200,5 @@ void LruCache<TKey, TValue>::rehash(size_t newCapacity) {
}

}

#endif // ANDROID_UTILS_LRU_CACHE_H