Astyle: sync windows and linux folders (#3016)
This commit is contained in:
parent
a7f0e91539
commit
50cdb6cbfc
|
@ -648,7 +648,8 @@ bool exprDependsOnThis(const Token* expr, nonneg int depth)
|
|||
return exprDependsOnThis(expr->astOperand1(), depth) || exprDependsOnThis(expr->astOperand2(), depth);
|
||||
}
|
||||
|
||||
static bool hasUnknownVars(const Token* startTok) {
|
||||
static bool hasUnknownVars(const Token* startTok)
|
||||
{
|
||||
bool result = false;
|
||||
visitAstNodes(startTok, [&](const Token* tok) {
|
||||
if (tok->varId() > 0 && !tok->variable()) {
|
||||
|
|
|
@ -890,7 +890,7 @@ void CheckBufferOverrun::objectIndex()
|
|||
continue;
|
||||
|
||||
std::vector<ValueFlow::Value> values = getLifetimeObjValues(obj, false, true);
|
||||
for(const ValueFlow::Value& v:values) {
|
||||
for (const ValueFlow::Value& v:values) {
|
||||
if (v.lifetimeKind != ValueFlow::Value::LifetimeKind::Address)
|
||||
continue;
|
||||
const Variable *var = v.tokvalue->variable();
|
||||
|
|
|
@ -451,8 +451,7 @@ struct ForwardTraversal {
|
|||
if (!thenBranch.isConclusiveEscape()) {
|
||||
if (!analyzer->lowerToInconclusive())
|
||||
return Progress::Break;
|
||||
}
|
||||
else if (thenBranch.check) {
|
||||
} else if (thenBranch.check) {
|
||||
return Progress::Break;
|
||||
} else {
|
||||
if (analyzer->isConditional() && stopUpdates())
|
||||
|
|
|
@ -58,7 +58,7 @@ formatCplusplus "test/*.cpp"
|
|||
formatCplusplus "test/cfg/*.c"
|
||||
formatCplusplus "test/cfg/*.cpp"
|
||||
formatCplusplus "test/*.h"
|
||||
formatCplusplus "tools/*.cpp"
|
||||
formatCplusplusRecursive "tools/*.cpp"
|
||||
formatCplusplusRecursive "tools/*.h"
|
||||
formatCplusplusRecursive "samples/*.c"
|
||||
formatCplusplusRecursive "samples/*.cpp"
|
||||
|
|
|
@ -30,6 +30,8 @@
|
|||
%ASTYLE% --options=%RCFILE% -r gui/test/*.h
|
||||
%ASTYLE% --options=%RCFILE% lib/*.cpp
|
||||
%ASTYLE% --options=%RCFILE% lib/*.h
|
||||
%ASTYLE% --options=%RCFILE% oss-fuzz/*.cpp
|
||||
%ASTYLE% --options=%RCFILE% oss-fuzz/*.h
|
||||
%ASTYLE% --options=%RCFILE% test/*.cpp
|
||||
%ASTYLE% --options=%RCFILE% test/cfg/*.c
|
||||
%ASTYLE% --options=%RCFILE% test/cfg/*.cpp
|
||||
|
|
|
@ -36,7 +36,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||
mFSmodel.setFilter(QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot);
|
||||
ui->directoryTree->setModel(&mFSmodel);
|
||||
QHeaderView * header = ui->directoryTree->header();
|
||||
for(int i = 1; i < header->length(); ++i) // hide all except [0]
|
||||
for (int i = 1; i < header->length(); ++i) // hide all except [0]
|
||||
header->hideSection(i);
|
||||
ui->directoryTree->setRootIndex(mFSmodel.index(WORK_FOLDER));
|
||||
|
||||
|
@ -276,9 +276,9 @@ void MainWindow::findInFilesClicked()
|
|||
const QString text = ui->filterEdit->text();
|
||||
|
||||
QStringList filter;
|
||||
if(ui->hFilesFilter->isChecked())
|
||||
if (ui->hFilesFilter->isChecked())
|
||||
filter.append(hFiles);
|
||||
if(ui->srcFilesFilter->isChecked())
|
||||
if (ui->srcFilesFilter->isChecked())
|
||||
filter.append(srcFiles);
|
||||
|
||||
QMimeDatabase mimeDatabase;
|
||||
|
|
Loading…
Reference in New Issue