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

protected have been removed.

llvm-svn: 32766
This commit is contained in:
Reid Spencer 2006-12-29 04:12:03 +00:00
parent 4b880acf07
commit c48b0c714d
1 changed files with 0 additions and 7 deletions

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);