aboutsummaryrefslogtreecommitdiffstats
path: root/tuplr.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'tuplr.hpp')
-rw-r--r--tuplr.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tuplr.hpp b/tuplr.hpp
index f095689..308c5d6 100644
--- a/tuplr.hpp
+++ b/tuplr.hpp
@@ -48,7 +48,7 @@ struct Cursor {
struct Error {
Error(const string& m, Cursor c=Cursor()) : msg(m), loc(c) {}
- const string what() const throw() { return (loc ? loc.str() + ": " : "") + "error: " + msg; }
+ const string what() const { return (loc ? loc.str() + ": " : "") + "error: " + msg; }
string msg;
Cursor loc;
};
@@ -423,7 +423,7 @@ struct TSubst : public map<AType*, AType*> {
struct TEnv : public Env<const AST*,AType*> {
TEnv(PEnv& p) : penv(p), varID(1) {}
struct Constraint : public pair<AType*,AType*> {
- Constraint(AType* a, AType* b, Cursor c=Cursor()) : pair<AType*,AType*>(a, b), loc(c) {}
+ Constraint(AType* a, AType* b, Cursor c) : pair<AType*,AType*>(a, b), loc(c) {}
Cursor loc;
};
typedef list<Constraint> Constraints;
@@ -460,8 +460,8 @@ struct CEnv {
CEnv(PEnv& p, TEnv& t, CEngine& e, ostream& os=std::cout, ostream& es=std::cerr);
~CEnv();
- typedef Env<const ASymbol*, AST*> Code;
- typedef Env<const AST*, CValue> Vals;
+ typedef Env<const ASymbol*, AST*> Code;
+ typedef Env<const AST*, CValue> Vals;
string gensym(const char* s="_") { return (format("%s%d") % s % symID++).str(); }
void push() { code.push(); vals.push(); }