Fix build error on Windows (wrong usage of Range())

This commit is contained in:
Matthias Hochsteger 2019-08-29 19:22:12 -07:00
parent 48086d343c
commit 6c06f79c8e

View File

@ -120,7 +120,7 @@ public:
NETGEN_INLINE Table (size_t asize, size_t entrysize)
: FlatTable<T>( asize, new size_t[asize+1], new T[asize*entrysize] )
{
for (size_t i : Range(size))
for (size_t i : IntRange(size))
index[i] = i*entrysize;
}