Make typedef public to make MSVC++ happy.
authorTed Kremenek <kremenek@apple.com>
Thu, 10 Jul 2008 23:24:20 +0000 (23:24 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 10 Jul 2008 23:24:20 +0000 (23:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53433 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/alist_node.h

index 1b877c0c2150aec49701f2b33ab9901d7338a371..c7ab8472dd7833d93274817178ba53d742694702 100644 (file)
@@ -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: