summaryrefslogtreecommitdiff
path: root/flang/runtime
diff options
context:
space:
mode:
authorSteve Scalpone <sscalpone@nvidia.com>2020-03-05 06:31:24 -0800
committerGitHub <noreply@github.com>2020-03-05 06:31:24 -0800
commit5dfd2b06d464f77171a3ef028b6c4f90d8561b07 (patch)
treebd571384aa002e335e8b3139361470d50e0593d6 /flang/runtime
parente94ee41ec27a1896993a9c49a81443521d564302 (diff)
downloadllvm-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.cpp1
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 {