From 5bbc247ade4f6fc705269e3b0a8a8cae13eeef12 Mon Sep 17 00:00:00 2001 From: Roland Stigge Date: Mon, 18 Feb 2019 22:26:31 +0100 Subject: Bugfix --- util.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'util.cpp') diff --git a/util.cpp b/util.cpp index 2a81823..d4616cf 100644 --- a/util.cpp +++ b/util.cpp @@ -1,5 +1,7 @@ #include "util.h" +#include + bool RIT::is_power_of_two(unsigned int n) { return n != 0 && (n & (n - 1)) == 0; } -- cgit v1.2.3