diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-04-05 04:01:35 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-04-05 04:01:35 +0000 |
commit | eaa01d355abd0e69bfec9d5b61f1330f42ff1fe8 (patch) | |
tree | ad2d3b1689b69b87254a58197246a4fce6e537d5 /stp/simplifier | |
parent | 40feb785ee98ead840f043f336a5d403c9752b94 (diff) | |
download | klee-eaa01d355abd0e69bfec9d5b61f1330f42ff1fe8.tar.gz |
STP: Remove stray semi-colons.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@100391 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'stp/simplifier')
-rw-r--r-- | stp/simplifier/bvsolver.cpp | 2 | ||||
-rw-r--r-- | stp/simplifier/bvsolver.h | 2 | ||||
-rw-r--r-- | stp/simplifier/simplifier.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/stp/simplifier/bvsolver.cpp b/stp/simplifier/bvsolver.cpp index 1c08f30b..369251db 100644 --- a/stp/simplifier/bvsolver.cpp +++ b/stp/simplifier/bvsolver.cpp @@ -711,4 +711,4 @@ namespace BEEV { UpdateAlreadySolvedMap(input,output); return output; } //end of BVSolve_Even() -};//end of namespace BEEV +} //end of namespace BEEV diff --git a/stp/simplifier/bvsolver.h b/stp/simplifier/bvsolver.h index a8981b12..8df32042 100644 --- a/stp/simplifier/bvsolver.h +++ b/stp/simplifier/bvsolver.h @@ -131,4 +131,4 @@ namespace BEEV { //equation to be solved, solves them, ASTNode TopLevelBVSolve(const ASTNode& a); }; //end of class bvsolver -};//end of namespace BEEV +} //end of namespace BEEV diff --git a/stp/simplifier/simplifier.cpp b/stp/simplifier/simplifier.cpp index 2a627398..c0519e83 100644 --- a/stp/simplifier/simplifier.cpp +++ b/stp/simplifier/simplifier.cpp @@ -2492,4 +2492,4 @@ namespace BEEV { TermsAlreadySeenMap[term] = var; return false; } -};//end of namespace +} //end of namespace |