diff options
author | Steve Scalpone <sscalpone@nvidia.com> | 2020-03-05 06:31:24 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-05 06:31:24 -0800 |
commit | 5dfd2b06d464f77171a3ef028b6c4f90d8561b07 (patch) | |
tree | bd571384aa002e335e8b3139361470d50e0593d6 /flang/runtime | |
parent | e94ee41ec27a1896993a9c49a81443521d564302 (diff) | |
download | llvm-5dfd2b06d464f77171a3ef028b6c4f90d8561b07.tar.gz |
[flang] Add missing include <algorithm> for std::max (flang-compiler/f18#1028)
Original-commit: flang-compiler/f18@0e32eebf7fec8cd07ab3280565799cfbf2ca55e2
Reviewed-on: https://github.com/flang-compiler/f18/pull/1028
Diffstat (limited to 'flang/runtime')
-rw-r--r-- | flang/runtime/numeric-output.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/flang/runtime/numeric-output.cpp b/flang/runtime/numeric-output.cpp index c0c617b8c206..fdf0cde340e1 100644 --- a/flang/runtime/numeric-output.cpp +++ b/flang/runtime/numeric-output.cpp @@ -8,6 +8,7 @@ #include "numeric-output.h" #include "flang/Common/unsigned-const-division.h" +#include <algorithm> namespace Fortran::runtime::io { |