Fix T56222: Bevel Modifier bug (uninitialized value).

This commit is contained in:
Bastien Montagne 2018-08-04 13:40:38 +02:00
parent cb6d7cb0b2
commit a56ec3dfe3
Notes: blender-bot 2023-02-14 11:34:30 +01:00
Referenced by issue #56222, MSVS 2017 Bug - Bevel Modifier
1 changed files with 1 additions and 1 deletions

View File

@ -4930,7 +4930,7 @@ static void find_even_superellipse_chords_general(int seg, float r, double *xval
double sum;
double temp;
bool precision_reached;
bool precision_reached = true;
bool seg_odd = seg % 2;
bool rbig;