Skip to content

Commit 3ed3a34

Browse files
committed
[NFC] fix formatting
1 parent 8246491 commit 3ed3a34

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -527,12 +527,10 @@ class SymbolManager {
527527

528528
static bool canSymbolicate(QualType T);
529529

530-
template <typename T, typename... Args>
531-
const T *get(Args &&...args);
530+
template <typename T, typename... Args> const T *get(Args &&...args);
532531

533-
const SymbolConjured* conjureSymbol(const Stmt *E,
534-
const LocationContext *LCtx,
535-
QualType T,
532+
const SymbolConjured *conjureSymbol(const Stmt *E,
533+
const LocationContext *LCtx, QualType T,
536534
unsigned VisitCount,
537535
const void *SymbolTag = nullptr) {
538536
return get<SymbolConjured>(E, LCtx, T, VisitCount, SymbolTag);

clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,8 +350,8 @@ static NonLoc doRearrangeUnchecked(ProgramStateRef State,
350350
}
351351
}
352352
APSIntPtr PersistentResultInt = BV.getValue(ResultInt);
353-
return nonloc::SymbolVal(
354-
SymMgr.get<SymIntExpr>(ResultSym, ResultOp, PersistentResultInt, ResultTy));
353+
return nonloc::SymbolVal(SymMgr.get<SymIntExpr>(
354+
ResultSym, ResultOp, PersistentResultInt, ResultTy));
355355
}
356356

357357
// Rearrange if symbol type matches the result type and if the operator is a

0 commit comments

Comments
 (0)