mu-sexp: don't require > c++17

This commit is contained in:
Dirk-Jan C. Binnema
2025-03-23 20:22:56 +02:00
parent 44ba631a34
commit 507ea8e18e

View File

@ -335,8 +335,8 @@ Sexp::plistp(Sexp::const_iterator b, Sexp::const_iterator e) const
return false;
else
return b->symbolp() &&
b->symbol().name.starts_with(':')
&& plistp(b + 2, e);
b->symbol().name[0] == ':' &&
plistp(b + 2, e);
}