We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c68dfc commit a9dc606Copy full SHA for a9dc606
source/source_lcao/module_hcontainer/hcontainer.cpp
@@ -46,6 +46,7 @@ HContainer<T>::HContainer(HContainer<T>&& HR_in) noexcept
46
this->wrapper_pointer = HR_in.wrapper_pointer;
47
this->gamma_only = HR_in.gamma_only;
48
this->paraV = HR_in.paraV;
49
+ this->allocated = HR_in.allocated;
50
this->current_R = -1;
51
HR_in.wrapper_pointer = nullptr;
52
// tmp terms not moved
@@ -63,6 +64,7 @@ HContainer<T>& HContainer<T>::operator=(HContainer<T>&& HR_in) noexcept
63
64
65
66
67
68
69
70
0 commit comments