diff options
author | John Ericson <git@JohnEricson.me> | 2020-06-03 06:15:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 10:15:22 +0000 |
commit | 01572c2198de49071827f0be9f5db202bac21703 (patch) | |
tree | 0674cab54e1226d8e1e1d04572f07c5296edc862 /src/libutil/lru-cache.hh | |
parent | bfa1acd85c4d15c5ea95337138f47672659e2a9e (diff) |
Missing `#include <cassert>` in `lru-cache.hh` (#3654)
This was a latent bug that just appeared because of the tests that were
added. Remember to wait for CI! :)
Diffstat (limited to 'src/libutil/lru-cache.hh')
-rw-r--r-- | src/libutil/lru-cache.hh | 1 |
1 files changed, 1 insertions, 0 deletions
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 <cassert> #include <map> #include <list> #include <optional> |