mu-sexp: don't require > c++17
This commit is contained in:
@ -335,8 +335,8 @@ Sexp::plistp(Sexp::const_iterator b, Sexp::const_iterator e) const
|
|||||||
return false;
|
return false;
|
||||||
else
|
else
|
||||||
return b->symbolp() &&
|
return b->symbolp() &&
|
||||||
b->symbol().name.starts_with(':')
|
b->symbol().name[0] == ':' &&
|
||||||
&& plistp(b + 2, e);
|
plistp(b + 2, e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user