From 0f324df3ef561d391d00b9e3d8fbf95dbc7fee1b Mon Sep 17 00:00:00 2001 From: Olivier Parcollet Date: Wed, 30 Oct 2013 13:19:33 +0100 Subject: [PATCH] gf: Fix for make_fourier in scalar_valued mode --- triqs/gfs/gf.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/triqs/gfs/gf.hpp b/triqs/gfs/gf.hpp index 10930c1d..f2ef8953 100644 --- a/triqs/gfs/gf.hpp +++ b/triqs/gfs/gf.hpp @@ -612,7 +612,10 @@ namespace triqs { namespace gfs { target_shape_t front_pop() const { // this make the get_target_shape function works in this case... return {}; } + target_shape_t() = default; + template target_shape_t(utility::mini_vector) {} }; + typedef typename gf_t::mesh_t mesh_t; static typename gf_t::data_t make_data(mesh_t const &m, target_shape_t shape) {