From c0377cdf4aad1e4d7b073c91887db91f357c6395 Mon Sep 17 00:00:00 2001 From: Morgan Deters Date: Tue, 21 Feb 2012 22:13:05 +0000 Subject: fix src/util/hash.h to specialize GNU's hash template for on platforms that need it; fixes Mac builds. --- src/expr/pickler.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/expr') 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(); } } -- cgit v1.2.3