diff options
Diffstat (limited to 'include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h')
-rw-r--r-- | include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h b/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h index b16f049441..631858dd7c 100644 --- a/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h +++ b/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h @@ -33,10 +33,10 @@ public: DefinedSVal Cond, bool Assumption) = 0; - std::pair<ProgramStateRef , ProgramStateRef > + std::pair<ProgramStateRef, ProgramStateRef > assumeDual(ProgramStateRef state, DefinedSVal Cond) { - std::pair<ProgramStateRef , ProgramStateRef > res = + std::pair<ProgramStateRef, ProgramStateRef > res = std::make_pair(assume(state, Cond, true), assume(state, Cond, false)); assert(!(!res.first && !res.second) && "System is over constrained."); |