diff --git a/include/project.h b/include/project.h index 66d457e..e037fef 100644 --- a/include/project.h +++ b/include/project.h @@ -84,6 +84,7 @@ struct LoaderMetadata { case eMedium: return 'm'; case eLarge: return 'l'; } + return 'x'; } }; class Project : public QObject diff --git a/src/DccFrontend.cpp b/src/DccFrontend.cpp index bc6d543..3aacc33 100644 --- a/src/DccFrontend.cpp +++ b/src/DccFrontend.cpp @@ -222,5 +222,5 @@ bool CreateFunction::execute(CommandContext *ctx) { //proj.addCommand(new FollowControl()); /* Recursively build entire procedure list */ //proj.callGraph->proc->FollowCtrl(proj.callGraph, &proj.m_entry_state); - + return true; } diff --git a/src/chklib.cpp b/src/chklib.cpp index c02f27c..9d598cd 100644 --- a/src/chklib.cpp +++ b/src/chklib.cpp @@ -718,6 +718,7 @@ bool PatternLocator::readProtoFile(void) // fread(&pArg[i], 1, SYMLEN, fProto); /* No names to read as yet */ pArg.push_back((hlType) readFileShort(fProto)); } + return true; } int PatternLocator::searchPList(const char *name)