aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-02 21:36:53 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2020-06-02 21:36:53 +0000
commit39ba87be9b426d75de50d35c9199661067218adc (patch)
tree0674cab54e1226d8e1e1d04572f07c5296edc862
parentbfa1acd85c4d15c5ea95337138f47672659e2a9e (diff)
Missing `#include <cassert>` in `lru-cache.hh`
This was a latent bug that just appeared because of the tests that were added. Remember to wait for CI! :)
-rw-r--r--src/libutil/lru-cache.hh1
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>