$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] error: type/value mismatch at argument 1 in template parameter
From: Andreas Hehn (hehn_at_[hidden])
Date: 2015-05-06 03:46:30
Hi,
this might be a silly question, but did you try to instantiate
Consumer<bounded_buffer> consumer(bb); // passing incomplete type
as you wrote, or did you specify the concrete type
Consumer<bounded_buffer<MyData> > consumer(bb);
?
Best,
Andreas