Add a missing #include <algorithm> to flow/Util.h

This commit is contained in:
Alex Miller 2018-08-10 16:18:24 -07:00
parent 7feb5d8209
commit 809b2ecdd7

View File

@ -22,6 +22,8 @@
#define _FLOW_UTIL_H_ #define _FLOW_UTIL_H_
#pragma once #pragma once
#include <algorithm>
template <typename C> template <typename C>
void swapAndPop(C* container, int index) { void swapAndPop(C* container, int index) {
if (index != container->size()-1) { if (index != container->size()-1) {