Fixed use of constness in FourierMap::scale
This commit is contained in:
parent
38eb21def8
commit
596dd5d681
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue