1
0
mirror of https://github.com/apple/foundationdb.git synced 2025-05-31 01:37:54 +08:00

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

@ -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) {