aboutsummaryrefslogtreecommitdiff
path: root/src/rt/Database.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/rt/Database.cc')
-rw-r--r--src/rt/Database.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rt/Database.cc b/src/rt/Database.cc
index 81d6f83a..3fc50039 100644
--- a/src/rt/Database.cc
+++ b/src/rt/Database.cc
@@ -53,10 +53,10 @@ namespace OpenAxiom {
}
else {
auto data = Lisp::assoc(key, toc);
- if (data != nil)
+ if (data != Value::nil)
return dict.insert({ key, data }).first->second;
}
- return nil;
+ return Value::nil;
}
}
}