Make typedef public to make MSVC++ happy.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53433 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ted Kremenek 2008-07-10 23:24:20 +00:00
parent 3000357ab5
commit 0ebf14c4bb

View 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: