summaryrefslogtreecommitdiff
path: root/src/expr/pickler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/pickler.h')
-rw-r--r--src/expr/pickler.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/expr/pickler.h b/src/expr/pickler.h
index 264ae0e4b..6e79d6997 100644
--- a/src/expr/pickler.h
+++ b/src/expr/pickler.h
@@ -50,7 +50,7 @@ public:
Pickle();
Pickle(const Pickle& p);
~Pickle();
- Pickle& operator = (const Pickle& other);
+ Pickle& operator=(const Pickle& other);
};/* class Pickle */
class CVC4_PUBLIC PicklingException : public Exception {
@@ -116,11 +116,11 @@ public:
protected:
virtual uint64_t variableToMap(uint64_t x) const
- throw(AssertionException, PicklingException){
+ throw(AssertionException, PicklingException) {
VarMap::const_iterator i = d_toMap.find(x);
- if(i != d_toMap.end()){
+ if(i != d_toMap.end()) {
return i->second;
- }else{
+ } else {
throw PicklingException();
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback