[decompile] fact-h (#556)

* decompile fact-h

* fix unused var

* codacy again
This commit is contained in:
water111
2021-06-05 11:15:34 -04:00
committed by GitHub
parent 542edfb164
commit 2851cae13b
27 changed files with 2789 additions and 231 deletions
+4
View File
@@ -213,6 +213,10 @@ bool Object::operator==(const Object& other) const {
}
}
bool Object::is_symbol(const std::string& name) const {
return is_symbol() && as_symbol()->name == name;
}
template <>
Object Object::make_number(FloatType value) {
return Object::make_float(value);