Fixed use of constness in FourierMap::scale
This commit is contained in:
parent
38eb21def8
commit
596dd5d681
@ -85,7 +85,7 @@ namespace CosmoTool
|
||||
{
|
||||
assert(size() == map2->size());
|
||||
MapType m(data(), size());
|
||||
MapType m2(map2->data(), map2->size());
|
||||
ConstMapType m2(map2->data(), map2->size());
|
||||
m *= m2;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user