<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general">
    <title>gmane.comp.parsers.spirit.general</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24799"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24798"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24797"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24796"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24795"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24794"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24793"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24792"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24791"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24790"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24789"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24788"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24787"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24786"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24785"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24784"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24783"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24782"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24781"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24780"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24799">
    <title>Re: BOOST_FUSION_DEFINE_STRUCT at class/namespacescope</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24799</link>
    <description>&lt;pre&gt;Thanks, Nate. I'll apply review and patch ASAP.

Regards,
&lt;/pre&gt;</description>
    <dc:creator>Joel de Guzman</dc:creator>
    <dc:date>2012-05-18T03:52:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24798">
    <title>Re: BOOST_FUSION_DEFINE_STRUCT at class/namespace scope</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24798</link>
    <description>&lt;pre&gt;

Attached is an updated patch that includes the TPL version.

Regards,
Nate
       ------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Spirit-general mailing list
Spirit-general&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-general
&lt;/pre&gt;</description>
    <dc:creator>Nathan Ridge</dc:creator>
    <dc:date>2012-05-18T00:12:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24797">
    <title>Re: [boost] [fusion] Trouble using BOOST_FUSION_ADAPT_ADT with boost::fusion::operator&lt;</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24797</link>
    <description>&lt;pre&gt;

Tests are attached. 


In the process of writing the tests, I discovered that only sequence
elements defined in a different namespace than the sequence are affected
(e.g. std::string in the OP's example). Here's why:


Suppose the sequence is of type N::Seq and its i'th element of type 
N::Elem, i.e. they are in the same namespace. When trying to resolve

operator&amp;lt;(adt_attribute_proxy&amp;lt;N::Seq, i&amp;gt;, adt_attribute_proxy&amp;lt;N::Seq, i&amp;gt;)

N is an associated namespace of adt_attribute_proxy&amp;lt;N::Seq, i&amp;gt;, and so ADL 
finds N::operator&amp;lt;(N::Elem, N::Elem) (assuming there is one). Since
adt_attribute_proxy&amp;lt;N::Seq, i&amp;gt; is convertible to N::Elem, the conversions
take place and it's a match.


On the other hand, suppose the sequence is of type N::Seq and its i'th
element of type M::Elem, i.e. they are in different namespaces. When
trying to resolve

operator&amp;lt;(adt_attribute_proxy&amp;lt;N::Seq, i&amp;gt;, adt_attribute_proxy&amp;lt;N::Seq, i&amp;gt;)


M is *not* an associated namespace of adt_attribute_proxy&amp;lt;N::Seq, i&amp;gt;
(even though adt_attribute_proxy&amp;lt;N:&lt;/pre&gt;</description>
    <dc:creator>Nathan Ridge</dc:creator>
    <dc:date>2012-05-17T23:09:22</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24796">
    <title>Re: BOOST_FUSION_DEFINE_STRUCT at class/namespace scope</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24796</link>
    <description>&lt;pre&gt;

Attached is a patch, including tests and documentation.

I haven't written a TPL version yet; I will write one and submit it in
a future patch.

Regards,
Nate
       ------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Spirit-general mailing list
Spirit-general&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-general
&lt;/pre&gt;</description>
    <dc:creator>Nathan Ridge</dc:creator>
    <dc:date>2012-05-17T07:10:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24795">
    <title>utree_cast compile issue</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24795</link>
    <description>&lt;pre&gt;Hi,
in utree detail,
there is a utree_cast template class which throw an exception in not 
convertible cast,
then return an object to the caller.
        template &amp;lt;typename From&amp;gt;
        To dispatch(From const&amp;amp;, boost::mpl::false_) const
        {
            throw std::bad_cast();
            return To();
        }

in some version og gcc, when:
TO=boost::spirit::any_ptr&amp;amp;
the compiler gives error: invalid value-initialization of reference types


I modify the code to define a new template class to handle the any_ptr&amp;amp; bad 
cast condition:

    template &amp;lt;typename To&amp;gt;
    struct utree_castobj {
    To dispatch() const {return To();}  };
    template &amp;lt;typename To&amp;gt;
    struct utree_castobj&amp;lt;To&amp;amp;&amp;gt; {
    To myTo;
    To&amp;amp; dispatch() {return myTo;}       };

and redefine the dispatch function of utree_cast:
        template &amp;lt;typename From&amp;gt;
        To dispatch(From const&amp;amp;, boost::mpl::false_) const
        {
            throw std::bad_cast();
            utree_castobj&amp;lt;To&amp;gt; mydispatch;
            return mydispatch.dispa&lt;/pre&gt;</description>
    <dc:creator>Nausca</dc:creator>
    <dc:date>2012-05-17T06:30:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24794">
    <title>Re: [boost] [fusion] Trouble using BOOST_FUSION_ADAPT_ADT with boost::fusion::operator&lt;</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24794</link>
    <description>&lt;pre&gt;

Will do.

Regards,
Nate
       
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
&lt;/pre&gt;</description>
    <dc:creator>Nathan Ridge</dc:creator>
    <dc:date>2012-05-17T01:32:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24793">
    <title>FW: [boost] [fusion] Trouble using BOOST_FUSION_ADAPT_ADT with boost::fusion::operator&lt;</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24793</link>
    <description>&lt;pre&gt;


----------------------------------------
       ------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Spirit-general mailing list
Spirit-general&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-general
&lt;/pre&gt;</description>
    <dc:creator>Nathan Ridge</dc:creator>
    <dc:date>2012-05-16T20:02:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24792">
    <title>Re: with BOOST :: SPIRIT, how to parse a math expression into syntax tree?</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24792</link>
    <description>&lt;pre&gt;Hey,

I recently wrote this code. Supports variables x,y,v, +-*/() and kronecker 
delta. Please note that it is GPL3'd though. Works with boost 1_46 and 
probably newer. Code is appended.

A parsing example:

        client::expression_ast ast;
        if(! build_tree_from_equation(equation, &amp;amp;ast))
         puts("Could not parse equation string - Terminating\n");

        client::ast_print solver(x,y,grid[internal]); // pass x,y,v
        return solver(ast);

Hope it helps!

Greetings,
Johannes


&lt;/pre&gt;</description>
    <dc:creator>Johannes Lorenz</dc:creator>
    <dc:date>2012-05-16T15:05:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24791">
    <title>Re: BOOST_FUSION_DEFINE_STRUCT at class/namespacescope</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24791</link>
    <description>&lt;pre&gt;
I'm definitely interested. Nice one, Nathan! Are there docs yet?
Sample code would be lovely.

Regards,
&lt;/pre&gt;</description>
    <dc:creator>Joel de Guzman</dc:creator>
    <dc:date>2012-05-16T10:52:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24790">
    <title>Re: with BOOST :: SPIRIT, how to parse a math expression into syntax tree?</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24790</link>
    <description>&lt;pre&gt;
With all due respect, this is not a 'free programmer service'.

The samples in the repo are a good starting point. Look at the various 
ones named calc* ?

That is not a real question. There isn't a tree. You just manipulate the 
root like you would any other node.
Perhaps you need to define what the problem is. What manipulation are 
you trying to do, that you can't figure out how to?

Cheers,
Seth
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Spirit-general mailing list
Spirit-general&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-general
&lt;/pre&gt;</description>
    <dc:creator>Seth Heeren</dc:creator>
    <dc:date>2012-05-16T07:04:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24789">
    <title>BOOST_FUSION_DEFINE_STRUCT at class/namespace scope</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24789</link>
    <description>&lt;pre&gt;
Hi,

I have written a version of BOOST_FUSION_DEFINE_STRUCT that can be
used at namespace or class scope (whereas BOOST_FUSION_DEFINE_STRUCT
itself can only be used at global scope). It works by having the
generated class derive from sequence_facade, much like 'struct 
triple' in libs/fusion/example/extension/triple.cpp (except that in
my implementation, the iterator class is nested inside the generated 
class).

I don't think my version is suitable as a replacement for
BOOST_FUSION_DEFINE_STRUCT, because in C++03 it makes the generated
struct non-POD (since it has a base class), and the POD-ness of
the generated struct may be important for some people. However, I
think it would serve as a useful alternative to people who don't
need POD-ness (or who use C++11, where having a base class does not
inhibit POD-ness) but want to be able to define Fusion sequences
that are nested inside another class.

Is there any interest in adding this alternative version to Fusion?
If so, I am happy to Boostify my implementat&lt;/pre&gt;</description>
    <dc:creator>Nathan Ridge</dc:creator>
    <dc:date>2012-05-16T03:06:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24788">
    <title>Re: with BOOST :: SPIRIT, how to parse a math expression into syntax tree?</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24788</link>
    <description>&lt;pre&gt;yes ,of course,all   math expression

On 15 May 2012 16:41, Kostya Kanishev &amp;lt;kkanishev&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Spirit-general mailing list
Spirit-general&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-general
&lt;/pre&gt;</description>
    <dc:creator>yuyan taiji</dc:creator>
    <dc:date>2012-05-16T02:09:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24787">
    <title>Re: Problem creating a std::complex&lt;float&gt; from two parsed floats</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24787</link>
    <description>&lt;pre&gt;Good idea.

It's not about ignorance, it is about clear questions, mostly :)

Two things:

  * refer to http://www.boost.org/community/error_handling.html "How to 
design my exception classes" on how to properly design your custom 
exception.

  * refer to [Auto-rule assignment semantics 
&amp;lt;http://www.boost.org/doc/libs/1_49_0/libs/spirit/doc/html/spirit/qi/reference/nonterminal/rule.html#spirit.qi.reference.nonterminal.rule.expression_semantics&amp;gt;] 
(operator%= instead of operator=)

With these two _tiny_ tweaks the things compiles. I haven't looked any 
further for this moment.

If you have any other questions, feel free to ask

PS.: Also warmly recommended: 
http://stackoverflow.com/questions/tagged/boost-spirit

Seth
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile se&lt;/pre&gt;</description>
    <dc:creator>Seth Heeren</dc:creator>
    <dc:date>2012-05-15T15:48:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24786">
    <title>Problem creating a std::complex&lt;float&gt; from twoparsed floats</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24786</link>
    <description>&lt;pre&gt;I am using Boost 1.48 on Win 7 using Visual Studio 2010 C++ Express.

The problem is
1&amp;gt;------ Build started: Project: Debug_Phoenix_Ref, Configuration:
Debug Win32 ------
1&amp;gt; main.cpp
1&amp;gt;c:\boost\boost_1_48_0\boost\spirit\home\qi\detail\assign_to.hpp(123):
error C2440: 'static_cast' : cannot convert from 'const attr_type' to
'std::complex&amp;lt;float&amp;gt;'

Now it seems that the only way for me to move forward is to post a
message about my problem so that someone can post a simple reply
exposing my ignorance. What I am trying to do is parse a sequence of
complex numbers written in a "float,float\n" format in a text file.
One complex number per line. I don't see the problem with what I have
written but given a lengthy delay since the last time I have used
Boost Spirit anything is possible.

File is attached.

Regards,
Stephen
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape ha&lt;/pre&gt;</description>
    <dc:creator>Stephen Torri</dc:creator>
    <dc:date>2012-05-15T14:42:26</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24785">
    <title>Re: with BOOST :: SPIRIT, how to parse a math expression into syntax tree?</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24785</link>
    <description>&lt;pre&gt;Do you need also to parse correctly this?
2*3+1*(3+5)
2012/5/15 yuyan taiji &amp;lt;taijiyuyan&amp;lt; at &amp;gt;gmail.com&amp;gt;

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Spirit-general mailing list
Spirit-general&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-general
&lt;/pre&gt;</description>
    <dc:creator>Kostya Kanishev</dc:creator>
    <dc:date>2012-05-15T08:41:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24784">
    <title>with BOOST :: SPIRIT,how to parse a math expression into syntax tree?</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24784</link>
    <description>&lt;pre&gt;with BOOST :: SPIRIT, how to parse a math expression into syntax tree?
eg.
1+2*3*(3+5)==&amp;gt;
+
1 *
  2 *
    3 +
      3 5

in spirit,how to manipulate the parent node of the tree ?
tks.
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Spirit-general mailing list
Spirit-general&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-general
&lt;/pre&gt;</description>
    <dc:creator>yuyan taiji</dc:creator>
    <dc:date>2012-05-15T04:49:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24783">
    <title>(no subject)</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24783</link>
    <description>&lt;pre&gt;I am trying to understand how I can adapt Rob Stewart's "Dispatching
on Expectation Point Failures". I have the preliminary functionality
coded up in the attached file.


Problem space: Trying to parse in a table of complex variables. The
file begins with one line stating the number of columns, number of
rows and if it is complex data or not. After that the data is read in
column oriented format. Each column value is written in a double value
followed by comma followed by a double value and ended with a newline
character. The idea is that in the end a boost multi_array containing
all the complex values converted from pairs of floats.


(Good input)

If I change the input to read:



const char* input_text = "cols = 1.0, rows = 2, complex =
1\n0.000000,0.000000\n0.000070,-0.000108";



I am expected a 2x1 matrix with the values { (0.0,0.0i), (0.00007,0.000108i) }.



(Bad input)

Now if for some reason the input string was:

const char* input_text = "col = 1.0, rows = 2, complex =
1\n0.000000,0.000000\n0.0000&lt;/pre&gt;</description>
    <dc:creator>Stephen Torri</dc:creator>
    <dc:date>2012-05-14T19:34:18</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24782">
    <title>Re: Typo in docs for BOOST_FUSION_ADAPT_TPL_ADT</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24782</link>
    <description>&lt;pre&gt;
Patch applied. Thanks, Mario!

Regards,
&lt;/pre&gt;</description>
    <dc:creator>Joel de Guzman</dc:creator>
    <dc:date>2012-05-14T00:41:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24781">
    <title>Re: [fusion] [range] range::erase vs. fusion::erase</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24781</link>
    <description>&lt;pre&gt;

Patches applied. Thanks, Nate!

Regards,
&lt;/pre&gt;</description>
    <dc:creator>Joel de Guzman</dc:creator>
    <dc:date>2012-05-14T00:38:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24780">
    <title>Typo in docs for BOOST_FUSION_ADAPT_TPL_ADT</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24780</link>
    <description>&lt;pre&gt;Hi.

I found the following minor typo in the synposis of BOOST_FUSION_ADAPT_TPL_ADT.
Maybe someone can/wants to apply this?

(relative to libs/fusion)
Index: doc/adapted.qbk
===================================================================
--- doc/adapted.qbk(revision 78461)
+++ doc/adapted.qbk(working copy)
&amp;lt; at &amp;gt;&amp;lt; at &amp;gt; -658,7 +658,7 &amp;lt; at &amp;gt;&amp;lt; at &amp;gt;
 
 [heading Synopsis]
 
-    BOOST_FUSION_ADAPT_ADT(
+    BOOST_FUSION_ADAPT_TPL_ADT(
         (template_param0)(template_param1)...,
         (type_name) (specialization_param0)(specialization_param1)...,
         (attribute_type0, attribute_const_type0, get_expr0, set_expr0)

&lt;/pre&gt;</description>
    <dc:creator>Mario Lang</dc:creator>
    <dc:date>2012-05-13T21:48:11</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24779">
    <title>Re: [fusion] [range] range::erase vs. fusion::erase</title>
    <link>http://permalink.gmane.org/gmane.comp.parsers.spirit.general/24779</link>
    <description>&lt;pre&gt;

Attached. (I know it's been a while since we discussed this, but better late
than never right?)

Other affected functions besides erase were copy, replace, replace_if,
reverse, count, count_if, for_each, insert, push_back, push_front, and
accumulate. I fixed all of them.

I have verified that all Fusion tests pass with these changes.

Thanks,
Nate
       ------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/_______________________________________________
Spirit-general mailing list
Spirit-general&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-general
&lt;/pre&gt;</description>
    <dc:creator>Nathan Ridge</dc:creator>
    <dc:date>2012-05-13T03:27:06</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.parsers.spirit.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.parsers.spirit.general</link>
  </textinput>
</rdf:RDF>

