Skip to content
Snippets Groups Projects
Commit 9d758723 authored by Chris Lattner's avatar Chris Lattner
Browse files

Remove needless dependence on boost

llvm-svn: 9961
parent fb4c057c
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
#include <functional> #include <functional>
#include "Support/iterator" #include "Support/iterator"
#include "boost/type_traits/transform_traits.hpp"
namespace llvm { namespace llvm {
...@@ -260,8 +259,8 @@ namespace ...@@ -260,8 +259,8 @@ namespace
{ {
template <typename T1, typename T2> template <typename T1, typename T2>
struct tier { struct tier {
typedef typename boost::add_reference<T1>::type first_type; typedef T1 &first_type;
typedef typename boost::add_reference<T2>::type second_type; typedef T2 &second_type;
first_type first; first_type first;
second_type second; second_type second;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment