remove unused constant endl

This commit is contained in:
VaclavT 2021-05-10 19:08:06 +02:00
parent a752ebdf12
commit d049675e9b
1 changed files with 0 additions and 3 deletions

3
ml.cpp
View File

@ -2008,9 +2008,6 @@ MlValue MlEnvironment::get(const std::string &name) const {
if (name == "float") return MlValue("float", builtin::cast_to_float);
if (name == "string") return MlValue("string", builtin::cast_to_string);
// Constants
if (name == "endl") return MlValue::string("\n");
// Other special forms
if (name == "benchmark") return MlValue("benchmark", builtin::benchmark);