Skip to content
Snippets Groups Projects
Commit 8e721e7d authored by Sebastian Hahta's avatar Sebastian Hahta
Browse files

fix Windows build

parent 71040ce7
No related branches found
No related tags found
No related merge requests found
Pipeline #27985 failed
......@@ -13,7 +13,7 @@ namespace algorithms {
template<int BITS>
struct GeneralizedCensusTransform {
static_assert(BITS%64 == 0);
static_assert(BITS%64 == 0, "size must be multiple of 64");
__host__ __device__ inline void compute(const int y, const int x, uint64_t* __restrict__ out) {
......
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