Make a variable private now that the conditions requiring it to be

protected have been removed.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32766 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2006-12-29 04:12:03 +00:00
parent c25ec252fd
commit 7194131b49

View File

@ -80,13 +80,6 @@ class FunctionType : public DerivedType {
FunctionType(const FunctionType &); // Do not implement
const FunctionType &operator=(const FunctionType &); // Do not implement
protected:
/// This should really be private, but it squelches a bogus warning
/// from GCC to make them protected: warning: `class FunctionType' only
/// defines private constructors and has no friends
///
/// Private ctor - Only can be created by a static member...
///
FunctionType(const Type *Result, const std::vector<const Type*> &Params,
bool IsVarArgs);