add missing <algorithm> header to util.hpp

This commit is contained in:
aquileia 2014-03-14 23:18:15 +01:00
parent 7f5006ed45
commit 3a3984e1dd

View file

@ -25,6 +25,7 @@
#include <math.h> // cmath may not provide round()
#include <vector>
#include <sstream>
#include <algorithm>
template<typename T>
inline bool is_even(T num) { return num % 2 == 0; }