diff --git a/src/servers/app/drawing/Painter/Painter.cpp b/src/servers/app/drawing/Painter/Painter.cpp index d23a0a6d1a..2dc6bb884c 100644 --- a/src/servers/app/drawing/Painter/Painter.cpp +++ b/src/servers/app/drawing/Painter/Painter.cpp @@ -5,10 +5,12 @@ * All rights reserved. Distributed under the terms of the MIT License. */ + /*! API to the Anti-Grain Geometry based "Painter" drawing backend. Manages rendering pipe-lines for stroke, fills, bitmap and text rendering. */ + #include "Painter.h" #include @@ -154,7 +156,9 @@ detect_simd() systemSIMD &= cpuSIMD; } return systemSIMD; -#endif // __INTEL__ +#else // !__INTEL__ + return 0; +#endif }