mirror of
https://github.com/triqs/dft_tools
synced 2024-12-26 14:23:38 +01:00
gf: add rebind view/const + delete swap
This commit is contained in:
parent
de0e41ed15
commit
2fc4f1cd09
@ -459,6 +459,9 @@ namespace triqs { namespace gfs {
|
|||||||
this->_data_proxy.rebind(this->_data,X);
|
this->_data_proxy.rebind(this->_data,X);
|
||||||
this->_singularity.rebind(X._singularity);
|
this->_singularity.rebind(X._singularity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void rebind (gf_view<Variable,Target,Opt,false> const &X) noexcept { rebind (gf_view{X});}
|
||||||
|
|
||||||
gf_view & operator = (gf_view const & ) = delete;
|
gf_view & operator = (gf_view const & ) = delete;
|
||||||
|
|
||||||
}; // class gf_const_view
|
}; // class gf_const_view
|
||||||
@ -584,5 +587,10 @@ namespace triqs { namespace gfs {
|
|||||||
|
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
// same as for arrays : views can not be swapped by the std::swap. Delete it
|
||||||
|
namespace std {
|
||||||
|
template <typename Variable, typename Target, typename Opt, bool C1, bool C2>
|
||||||
|
void swap(triqs::gfs::gf_view<Variable, Target, Opt, C1> &a, triqs::gfs::gf_view<Variable, Target, Opt, C2> &b) = delete;
|
||||||
|
}
|
||||||
#include "./gf_expr.hpp"
|
#include "./gf_expr.hpp"
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user