Skip to content
Snippets Groups Projects

Refactor slightly BuiltinFunctionEmbedder and check types

Merged Stéphane Del Pino requested to merge feature/buitin-functions-improvements into develop
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -32,7 +32,7 @@ class BuiltinModule : public IModule
}
catch (std::invalid_argument& e) {
std::ostringstream os;
os << "while defining user function '" << rang::fgB::yellow << name << rang::fg::reset << "'\n";
os << "while defining builtin function '" << rang::fgB::yellow << name << rang::fg::reset << "'\n";
os << e.what();
throw UnexpectedError(os.str());
}
Loading