summaryrefslogtreecommitdiff
path: root/src/expr
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2010-03-04 20:10:46 +0000
committerTim King <taking@cs.nyu.edu>2010-03-04 20:10:46 +0000
commit29cc307cdf2c42bebf4f5615874a864783f47fd0 (patch)
treebcc296eaef23abb9264d78adc3cfe08264f425ab /src/expr
parent45b7c76aba6ac71726fb2bf46c45ad7ce6bc8c99 (diff)
Committing a bug fix from Dejan. This resolves an issue with restoring ECData.
Diffstat (limited to 'src/expr')
-rw-r--r--src/expr/expr_manager.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/expr/expr_manager.h b/src/expr/expr_manager.h
index 67fa0664a..f5edc5464 100644
--- a/src/expr/expr_manager.h
+++ b/src/expr/expr_manager.h
@@ -24,8 +24,8 @@ namespace CVC4 {
class Expr;
class Type;
-class BooleanType;
-class FunctionType;
+class BooleanType;
+class FunctionType;
class KindType;
class SmtEngine;
class NodeManager;
@@ -91,12 +91,12 @@ public:
Expr mkExpr(Kind kind, const std::vector<Expr>& children);
/** Make a function type from domain to range. */
- const FunctionType*
- mkFunctionType(const Type* domain,
+ const FunctionType*
+ mkFunctionType(const Type* domain,
const Type* range);
/** Make a function type with input types from argTypes. */
- const FunctionType*
+ const FunctionType*
mkFunctionType(const std::vector<const Type*>& argTypes,
const Type* range);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback