[flang] Add missing include for std::min

This was causing the build to fail on macos.

Differential Revision: https://reviews.llvm.org/D83237
This commit is contained in:
Tim Keith 2020-07-06 13:03:00 -07:00
parent f987ba3cf9
commit 1b18391818
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@
#include "file.h" #include "file.h"
#include "magic-numbers.h" #include "magic-numbers.h"
#include "memory.h" #include "memory.h"
#include <algorithm>
#include <cerrno> #include <cerrno>
#include <cstring> #include <cstring>
#include <fcntl.h> #include <fcntl.h>