Cleanup: Collapsible brackets in macros
Fix of collapsible brackets in Notepad++.
This commit is contained in:
committed by
Raul Fernandez Hernandez
parent
c3f1bacc80
commit
849279b8f1
@@ -1683,10 +1683,11 @@ void fill_crossdata_for_intersect(const FatCo<T> &curco,
|
||||
switch (isect.kind) {
|
||||
case isect_result<VecBase<T, 2>>::LINE_LINE_CROSS: {
|
||||
#ifdef WITH_GMP
|
||||
if (!std::is_same<T, mpq_class>::value) {
|
||||
if (!std::is_same<T, mpq_class>::value)
|
||||
#else
|
||||
if (true) {
|
||||
if (true)
|
||||
#endif
|
||||
{
|
||||
double len_ab = distance(va->co.approx, vb->co.approx);
|
||||
if (lambda * len_ab <= epsilon) {
|
||||
fill_crossdata_for_through_vert(va, se_vcva, cd, cd_next);
|
||||
|
||||
Reference in New Issue
Block a user