diff options
author | John Hodge <tpg@mutabah.net> | 2019-10-26 16:09:24 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2019-10-26 16:09:24 +0800 |
commit | 9ce35b65e5be4ce75b3b7aabe29c432128a17279 (patch) | |
tree | 069581e21b424a24c92b1f87e7d00f3af006366d /src/mir/mir.cpp | |
parent | abd2a151b9107221e753c5b2fe09a143d09ad1f5 (diff) | |
download | mrust-9ce35b65e5be4ce75b3b7aabe29c432128a17279.tar.gz |
All - Compilation fixes on VS2015 (constructors, warnings, missing files, class/struct disagreement, <algorithm>)
Diffstat (limited to 'src/mir/mir.cpp')
-rw-r--r-- | src/mir/mir.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mir/mir.cpp b/src/mir/mir.cpp index 8e3045d6..a0def040 100644 --- a/src/mir/mir.cpp +++ b/src/mir/mir.cpp @@ -6,6 +6,7 @@ * - MIR (Middle Intermediate Representation) definitions */ #include <mir/mir.hpp> +#include <algorithm> // std::min namespace MIR { ::std::ostream& operator<<(::std::ostream& os, const Constant& v) { |