mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-13 06:30:34 +05:00
Fix build error on Windows (wrong usage of Range())
This commit is contained in:
parent
48086d343c
commit
6c06f79c8e
@ -120,7 +120,7 @@ public:
|
|||||||
NETGEN_INLINE Table (size_t asize, size_t entrysize)
|
NETGEN_INLINE Table (size_t asize, size_t entrysize)
|
||||||
: FlatTable<T>( asize, new size_t[asize+1], new T[asize*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;
|
index[i] = i*entrysize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user