[flang] Need <algorithm> for std::min and std::max (flang-compiler/f18#1063)

Original-commit: flang-compiler/f18@d0f9ef7742
Reviewed-on: https://github.com/flang-compiler/f18/pull/1063
This commit is contained in:
Isuru Fernando 2020-03-12 12:52:29 -05:00 committed by GitHub
parent 324bab9bf4
commit 231fae9087
6 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#include "connection.h"
#include "environment.h"
#include <algorithm>
namespace Fortran::runtime::io {

View File

@ -9,6 +9,7 @@
#include "edit-input.h"
#include "flang/Common/real.h"
#include "flang/Common/uint128.h"
#include <algorithm>
namespace Fortran::runtime::io {

View File

@ -9,6 +9,7 @@
#include "edit-output.h"
#include "flang/Common/uint128.h"
#include "flang/Common/unsigned-const-division.h"
#include <algorithm>
namespace Fortran::runtime::io {

View File

@ -16,6 +16,7 @@
#include "main.h"
#include "flang/Common/format.h"
#include "flang/Decimal/decimal.h"
#include <algorithm>
#include <limits>
namespace Fortran::runtime::io {

View File

@ -7,6 +7,7 @@
//===----------------------------------------------------------------------===//
#include "tools.h"
#include <algorithm>
#include <cstring>
namespace Fortran::runtime {

View File

@ -1,5 +1,6 @@
#include "testing.h"
#include "../../runtime/terminator.h"
#include <algorithm>
#include <cstdarg>
#include <cstdio>
#include <cstring>