From 8458f5d45bcd75a7d5ba6d2406088ead4c94ea8f Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Tue, 1 Jul 2008 18:13:58 +0000 Subject: [PATCH] Make ilist_traits's Parent member private. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52974 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineFunction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h index 97027da7d67..ad4f1d120c9 100644 --- a/include/llvm/CodeGen/MachineFunction.h +++ b/include/llvm/CodeGen/MachineFunction.h @@ -32,7 +32,7 @@ class MachineJumpTableInfo; // ilist_traits template <> -struct ilist_traits { +class ilist_traits { // this is only set by the MachineFunction owning the ilist friend class MachineFunction; MachineFunction* Parent;