Boost C++ Libraries: Ticket #733: Numbered headers don't work with "preferred" syntax https://svn.boost.org/trac10/ticket/733 <pre class="wiki">Hi, I'd like to write the "Preferred syntax" of a signal while including a header for a fixed number of parameters. This works for boost::function, but not for boost::signal. Surprisingly, it seems that signal1.hpp does only generate a signal1 template, in contrast to function1.hpp. :[ Couldn't that be aligned to boost::function? #include &lt;boost/function/function1.hpp&gt; typedef boost::function1&lt;void, void&gt; F1; // compiles typedef boost::function&lt;void (void)&gt; F2; // compiles #include &lt;boost/signals/signal1.hpp&gt; typedef boost::signal1&lt;void, void&gt; S1; // compiles typedef boost::signal&lt;void (void)&gt; S2; // does not compile -- David </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/733 Trac 1.4.3 Marshall Clow Thu, 12 Jul 2007 15:14:32 GMT owner, status changed; severity set https://svn.boost.org/trac10/ticket/733#comment:1 https://svn.boost.org/trac10/ticket/733#comment:1 <ul> <li><strong>owner</strong> changed from <span class="trac-author">Douglas Gregor</span> to <span class="trac-author">doug_gregor</span> </li> <li><strong>status</strong> <span class="trac-field-old">assigned</span> → <span class="trac-field-new">new</span> </li> <li><strong>severity</strong> → <span class="trac-field-new">Problem</span> </li> </ul> <p> Assigned to "doug_gregor" instead of nonexistent user "dgregor" </p> Ticket Douglas Gregor Tue, 29 Apr 2008 18:27:22 GMT owner, description changed https://svn.boost.org/trac10/ticket/733#comment:2 https://svn.boost.org/trac10/ticket/733#comment:2 <ul> <li><strong>owner</strong> changed from <span class="trac-author">doug_gregor</span> to <span class="trac-author">Douglas Gregor</span> </li> <li><strong>description</strong> modified (<a href="/trac10/ticket/733?action=diff&amp;version=2">diff</a>) </li> </ul> Ticket Marshall Clow Tue, 18 Jun 2013 16:50:41 GMT status, resolution changed https://svn.boost.org/trac10/ticket/733#comment:3 https://svn.boost.org/trac10/ticket/733#comment:3 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> <span class="trac-field-old">None</span> → <span class="trac-field-new">wontfix</span> </li> </ul> <p> Boost.Signals is being deprecated. Please transition to Boost.Signals2 </p> Ticket