Add a missing #include <algorithm> to flow/Util.h
This commit is contained in:
parent
7feb5d8209
commit
809b2ecdd7
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue