blitzpp / blitz

Blitz++ Multi-Dimensional Array Library for C++
https://github.com/blitzpp/blitz/wiki
Other
405 stars 84 forks source link

[bug] index-operators fail if not int #115

Closed ClmnsRck closed 5 years ago

ClmnsRck commented 5 years ago

When doing something like this:

for(long i = 0; i < SIZE; ++i){
    array(i,0) = 1;
}

It fails, as long does not seem supported ... neither is size_t nor uint64_t.

ClmnsRck commented 5 years ago

either i am really lucky while doing something forbidden, or there is something wrong, as not even uint32_t is supported

AnderOne commented 5 years ago

See #111 (comment)