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
1 changed files with 2 additions and 0 deletions

View File

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