diff options
Diffstat (limited to 'source/Utility/Range.cpp')
| -rw-r--r-- | source/Utility/Range.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source/Utility/Range.cpp b/source/Utility/Range.cpp index 95f00e5c7599..9d1d28ea484b 100644 --- a/source/Utility/Range.cpp +++ b/source/Utility/Range.cpp @@ -1,5 +1,4 @@ -//===--------------------- Range.cpp -----------------------------*- C++ -//-*-===// +//===--------------------- Range.cpp -----------------------------*- C++-*-===// // // The LLVM Compiler Infrastructure // @@ -10,6 +9,9 @@ #include "lldb/Utility/Range.h" +#include <algorithm> +#include <utility> + using namespace lldb_utility; Range::Range(const Range &rng) : m_low(rng.m_low), m_high(rng.m_high) { |
