Apply 'make format'

This commit is contained in:
github action 2024-05-02 23:03:39 +00:00
parent ec45a77d93
commit 6509bac59e

View File

@ -712,8 +712,8 @@ string V3PreProcImp::defineSubst(VDefineRef* refp) {
// Substitute
const string subst = iter->second;
if (subst == "") {
// Normally `` is removed later, but with no token after, we're otherwise
// stuck, so remove proceeding ``
// Normally `` is removed later, but with no token after, we're
// otherwise stuck, so remove proceeding ``
if (out.size() >= 2 && out.substr(out.size() - 2) == "``") {
out = out.substr(0, out.size() - 2);
}