From f6e006c2e051df61cb0f49d95f55fa0a531575bb Mon Sep 17 00:00:00 2001 From: Olivier Parcollet Date: Wed, 4 Dec 2013 12:11:48 +0100 Subject: [PATCH] gf. Correct evaluator imfreq - overload for matsubara_freq, not the point. --- triqs/gfs/imfreq.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/triqs/gfs/imfreq.hpp b/triqs/gfs/imfreq.hpp index eb755e8c..d993c929 100644 --- a/triqs/gfs/imfreq.hpp +++ b/triqs/gfs/imfreq.hpp @@ -62,7 +62,7 @@ namespace gfs { long n; evaluator_fnt_on_mesh() = default; template evaluator_fnt_on_mesh(MeshType const &m, long p) { n = p; } - template evaluator_fnt_on_mesh(MeshType const &m, matsubara_freq_mesh::mesh_point_t const &p) { n = p.n; } + template evaluator_fnt_on_mesh(MeshType const &m, matsubara_freq const &p) { n = p.n; } template auto operator()(F const &f) const DECL_AND_RETURN(f(n)); };