mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
Remove needless dependence on boost
llvm-svn: 9961
This commit is contained in:
parent
8508dec429
commit
b3ddf91dd5
@ -19,7 +19,6 @@
|
||||
|
||||
#include <functional>
|
||||
#include "Support/iterator"
|
||||
#include "boost/type_traits/transform_traits.hpp"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
@ -260,8 +259,8 @@ namespace
|
||||
{
|
||||
template <typename T1, typename T2>
|
||||
struct tier {
|
||||
typedef typename boost::add_reference<T1>::type first_type;
|
||||
typedef typename boost::add_reference<T2>::type second_type;
|
||||
typedef T1 &first_type;
|
||||
typedef T2 &second_type;
|
||||
|
||||
first_type first;
|
||||
second_type second;
|
||||
|
Loading…
Reference in New Issue
Block a user