aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-07-10 23:24:20 +0000
committerTed Kremenek <kremenek@apple.com>2008-07-10 23:24:20 +0000
commit0ebf14c4bb96397b7dd9ba61c38371f868e7b264 (patch)
tree816b66bad278c41e55b3bd99135ccda1a12d3fd5
parent3000357ab58707faaa8ecb885c1ae09eb211e7c1 (diff)
Make typedef public to make MSVC++ happy.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53433 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/ADT/alist_node.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/ADT/alist_node.h b/include/llvm/ADT/alist_node.h
index 1b877c0c21..c7ab8472dd 100644
--- a/include/llvm/ADT/alist_node.h
+++ b/include/llvm/ADT/alist_node.h
@@ -77,6 +77,7 @@ private:
// A specialization of ilist_traits for alist_nodes.
template<class T, class LargestT>
class ilist_traits<alist_node<T, LargestT> > {
+public:
typedef alist_node<T, LargestT> NodeTy;
protected: