Fix the modules build after r281167

Add an #include for <type_traits> to llvm/ADT/ilist_node_options.h to
make it standalone.

llvm-svn: 281169
This commit is contained in:
Duncan P. N. Exon Smith 2016-09-11 17:00:12 +00:00
parent cc9edace0c
commit f887596ef8
1 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,8 @@
#ifndef LLVM_ADT_ILIST_NODE_OPTIONS_H
#define LLVM_ADT_ILIST_NODE_OPTIONS_H
#include <type_traits>
namespace llvm {
template <bool EnableSentinelTracking> class ilist_node_base;