clang-format 10.0 forward compatibility. No functional change.
This commit is contained in:
parent
1a64c7d232
commit
1883ab29cb
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue