From e36de1fe51c39d9161915dd3dbef880954af6476 Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Tue, 11 Jan 2011 02:34:45 +0000 Subject: Rename misc. methods in GRSubEngine to start with a lower-case letter. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123211 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/StaticAnalyzer/SimpleConstraintManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/StaticAnalyzer/SimpleConstraintManager.cpp') diff --git a/lib/StaticAnalyzer/SimpleConstraintManager.cpp b/lib/StaticAnalyzer/SimpleConstraintManager.cpp index e54d0ffe00..11bc5698a9 100644 --- a/lib/StaticAnalyzer/SimpleConstraintManager.cpp +++ b/lib/StaticAnalyzer/SimpleConstraintManager.cpp @@ -69,7 +69,7 @@ const GRState *SimpleConstraintManager::assume(const GRState *state, const GRState *SimpleConstraintManager::assume(const GRState *state, Loc cond, bool assumption) { state = assumeAux(state, cond, assumption); - return SU.ProcessAssume(state, cond, assumption); + return SU.processAssume(state, cond, assumption); } const GRState *SimpleConstraintManager::assumeAux(const GRState *state, @@ -118,7 +118,7 @@ const GRState *SimpleConstraintManager::assume(const GRState *state, NonLoc cond, bool assumption) { state = assumeAux(state, cond, assumption); - return SU.ProcessAssume(state, cond, assumption); + return SU.processAssume(state, cond, assumption); } static BinaryOperator::Opcode NegateComparison(BinaryOperator::Opcode op) { -- cgit v1.2.3-18-g5258