We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With clang 18/19 on windows (using conan to install simd/6.1.143) im getting the following compile error
simd/6.1.143
Simd\SimdDrawing.hpp(260,19): error : no member named 'FillPixel' in namespace 'Simd' 260 | Simd::FillPixel<A, Color>(canvas.Region(rect).Ref(), color); | ~~~~~~^ Simd\SimdDrawing.hpp(260,29): error : use of template template parameter 'A' requires template arguments 260 | Simd::FillPixel<A, Color>(canvas.Region(rect).Ref(), color); | ^ Simd/SimdDrawing.hpp(255,36): note: template is declared here 255 | template<template<class> class A, class Color> SIMD_INLINE void DrawFilledRectangle(View<A> & canvas, Rectangle<ptrdiff_t> rect, const Color & color) | ~~~~~~~~~~~~~~~ ^ 2 errors generated. ninja: build stopped: subcommand failed.
The text was updated successfully, but these errors were encountered:
Thank you for bug report. I see that is Windows/Clang specific bug because Clang compiles Simd fine on Ubuntu.
Sorry, something went wrong.
I should specify that clang-cl is being used
clang-cl
No branches or pull requests
With clang 18/19 on windows (using conan to install
simd/6.1.143
) im getting the following compile errorThe text was updated successfully, but these errors were encountered: