clang-format 10.0 forward compatibility. No functional change.

This commit is contained in:
Wilson Snyder 2020-04-15 17:36:48 -04:00
parent 1a64c7d232
commit 1883ab29cb
1 changed files with 3 additions and 3 deletions

View File

@ -273,17 +273,17 @@ public:
switch (other.m_e) {
case VEdgeType::ET_NEGEDGE: // FALLTHRU
case VEdgeType::ET_LOWEDGE: return true;
default: {}
default:;
}
break;
case VEdgeType::ET_NEGEDGE:
switch (other.m_e) {
case VEdgeType::ET_POSEDGE: // FALLTHRU
case VEdgeType::ET_HIGHEDGE: return true;
default: {}
default:;
}
break;
default: {}
default:;
}
return false;
}