forked from OSchip/llvm-project
Make a variable private now that the conditions requiring it to be
protected have been removed. llvm-svn: 32766
This commit is contained in:
parent
4b880acf07
commit
c48b0c714d
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue