SymbolDatabase: Remove unused Function constructor

This commit is contained in:
Daniel Marjamäki 2018-04-29 14:57:02 +02:00
parent 2f18fbabaa
commit ff732e41ac
1 changed files with 0 additions and 17 deletions

View File

@ -696,23 +696,6 @@ class CPPCHECKLIB Function {
public:
enum Type { eConstructor, eCopyConstructor, eMoveConstructor, eOperatorEqual, eDestructor, eFunction };
Function()
: tokenDef(nullptr),
argDef(nullptr),
token(nullptr),
arg(nullptr),
retDef(nullptr),
retType(nullptr),
functionScope(nullptr),
nestedIn(nullptr),
initArgCount(0),
type(eFunction),
access(Public),
noexceptArg(nullptr),
throwArg(nullptr),
flags(0) {
}
Function(const Tokenizer *_tokenizer, const Token *tok, const Scope *scope, const Token *tokDef, const Token *tokArgDef);
const std::string &name() const {