From b3ba762dbf26c323accf6c5f2763fb54b08d96dc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 7 Nov 2016 14:35:47 +0100 Subject: [PATCH] Add missing #include --- src/libutil/finally.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libutil/finally.hh b/src/libutil/finally.hh index 47c64dea..7760cfe9 100644 --- a/src/libutil/finally.hh +++ b/src/libutil/finally.hh @@ -1,5 +1,7 @@ #pragma once +#include + /* A trivial class to run a function at the end of a scope. */ class Finally {