Skip to content
Snippets Groups Projects
Commit 88aa0c34 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Don't guard #pragma

parent 322cb017
No related branches found
No related tags found
No related merge requests found
......@@ -10156,9 +10156,7 @@ rip_bezier(int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4, int c
i = 0;
targets[i++] = x1;
targets[i++] = y1;
#ifndef _MSC_VER
#pragma clang loop vectorize(enable)
#endif
for (step = 1; step < cnt; step++) {
double tf = ((double)step) / cnt;
double tr = ((double)(cnt - step)) / cnt;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment