From 39ba87be9b426d75de50d35c9199661067218adc Mon Sep 17 00:00:00 2001 From: John Ericson Date: Tue, 2 Jun 2020 21:36:53 +0000 Subject: [PATCH] Missing `#include ` in `lru-cache.hh` This was a latent bug that just appeared because of the tests that were added. Remember to wait for CI! :) --- src/libutil/lru-cache.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libutil/lru-cache.hh b/src/libutil/lru-cache.hh index 8b83f842c..6ef4a3e06 100644 --- a/src/libutil/lru-cache.hh +++ b/src/libutil/lru-cache.hh @@ -1,5 +1,6 @@ #pragma once +#include #include #include #include