<?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://blog.gmane.org/gmane.comp.parsers.spirit.devel">
    <title>gmane.comp.parsers.spirit.devel</title>
    <link>http://blog.gmane.org/gmane.comp.parsers.spirit.devel</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://comments.gmane.org/gmane.comp.parsers.spirit.devel/4033"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4031"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4029"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4028"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4026"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4024"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4023"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4021"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4020"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4010"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3994"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3989"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3981"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3979"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3978"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3968"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3967"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3964"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3961"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3957"/>
      </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://comments.gmane.org/gmane.comp.parsers.spirit.devel/4033">
    <title>Feature request - attribute type should not bealtered for terminal rules</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4033</link>
    <description>&lt;pre&gt;Hi all,

I've discussed this with Joel on IRC, but am posting this to the list
so others can comment.
Currently code such as this results in unexpected behaviour (for me).

#define BOOST_SPIRIT_ACTIONS_ALLOW_ATTR_COMPAT

int result;
parse(first, last, word[_val = if_else_(_1 &amp;gt; 1000u, -1, 5)], result);

This results in a warning about comparison between signed and unsigned
types (_1 &amp;gt; 1000u).
This is because the attribute type is converted to int to match the
type of the result variable, even though the type returned by word is
unsigned.

I would like to request a change in the behaviour for terminal rules,
if possible, so that this no-longer occurs. The type of _1 would now
be unsigned, and the comparison would happen without warnings. The two
possible branches output a type that is compatible with the type of
the output variable and so it succeeds.

The code below, however, should result in a warning or error:

int result;
parse(first, last, dword, result); // Difference in sign

or

unsigned result;
parse(&lt;/pre&gt;</description>
    <dc:creator>Vitaly Budovski</dc:creator>
    <dc:date>2012-05-10T07:00:21</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4031">
    <title>[spirit] get_script method</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4031</link>
    <description>&lt;pre&gt;I am trying to get the script name for a given Unicode value. This is the method I am calling.

http://www.boost.org/doc/libs/1_49_0/boost/spirit/home/support/char_encoding/unicode/query.hpp

inline properties::script get_script(::boost::uint32_t ch)
{
     return static_cast&amp;lt;properties::script&amp;gt;(detail::script_lookup(ch) &amp;amp; 0x3F);
}


enum script

{

.

.

.

common = 92,

unknown = 93

}



This api is not returning "common" script for characters such as space. The reason being the &amp;amp; operation with 0x3F. It restricts the return value to the range 0-63. Thus the values in the enum "script" greater that 63 will never be returned.

I fail to understand the logic behind this. Can somebody please explain the behavior, why the values are being restricted to top 64 only?

Thanks

------------------------------------------------------------------------------
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&lt;/pre&gt;</description>
    <dc:creator>Keshav Krity</dc:creator>
    <dc:date>2012-05-05T06:39:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4029">
    <title>RFC: Add support for parsing binary integers of userspecified lengths</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4029</link>
    <description>&lt;pre&gt;Hi,

See the attached patch. Please not that it doesn't currently work
unless BOOST_SPIRIT_NO_PREDEFINED_TERMINALS is defined.
Can anyone suggest how I might fix this?


Regards,

Vitaly
------------------------------------------------------------------------------
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-devel mailing list
Spirit-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-devel
&lt;/pre&gt;</description>
    <dc:creator>Vitaly Budovski</dc:creator>
    <dc:date>2012-05-01T11:22:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4028">
    <title>Keywords parser msvc 9.0 patch</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4028</link>
    <description>&lt;pre&gt;Hello,

Here's a patch which fixes the issues I found with the last patch with 
msvc 9.0.

I also pushed the modifications on the ryppl git mirror of boost.

Regards,
Thomas Bernard
------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Spirit-devel mailing list
Spirit-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-devel
&lt;/pre&gt;</description>
    <dc:creator>teajay</dc:creator>
    <dc:date>2012-04-09T18:34:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4026">
    <title>Fields of type lex::char_</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4026</link>
    <description>&lt;pre&gt;Sorry if this is duplicated, I originally sent it two days ago but I never
saw it appear back in my inbox as a list message (I actually haven't seen
*any* messages to this list yet...is it still active?), nor have I seen any
follow-up, so I thought I would send it again in case I hadn't been
properly registered as one allowed to send mail when I sent it the first
time.

I am having some problems having fields on my lexer of type lex::char_,
specifically I get the following errors in Visual Studio 2010 SP1 with
Boost 1.47

C2146: syntax error : missing ';' before identifier 'simple'
C2886: 'boost::spirit::standard::char_' : symbol cannot be used in a member
using-declaration
C4430: missing type specifier - int assumed. Note: C++ does not support
default-int
C2146: syntax error : missing ';' before identifier 'simple'
C2886: 'boost::spirit::standard::char_' : symbol cannot be used in a member
using-declaration
C4430: missing type specifier - int assumed. Note: C++ does not support
default-int

This is with the&lt;/pre&gt;</description>
    <dc:creator>Ryan Molden</dc:creator>
    <dc:date>2011-11-07T17:03:56</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4024">
    <title>Missing documentation file.</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4024</link>
    <description>&lt;pre&gt;Hi,

The spirit repository doc build is failing at the moment, it looks
like 'libs/spirit/repository/doc/what_s_new.qbk' is missing in trunk.

------------------------------------------------------------------------------
RSA&amp;amp;#174; Conference 2012
Save $700 by Nov 18
Register now&amp;amp;#33;
http://p.sf.net/sfu/rsa-sfdev2dev1
&lt;/pre&gt;</description>
    <dc:creator>Daniel James</dc:creator>
    <dc:date>2011-11-02T08:50:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4023">
    <title>Patch for qi::seek[] doc</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4023</link>
    <description>&lt;pre&gt;Hi list,

There's an issue I overlooked in qi::seek[], in conjunction with sequence
(i.e. a &amp;gt;&amp;gt; b) and skipping.

Consequently, I decided to change my seek.cpp example, adding one note to
the doc that guides the users to deal with the case.

The complexity section is also modified, I hope I get it right this time.


Thanks!
------------------------------------------------------------------------------
The demand for IT networking professionals continues to grow, and the
demand for specialized networking skills is growing even more rapidly.
Take a complimentary Learning&amp;lt; at &amp;gt;Cisco Self-Assessment and learn 
about Cisco certifications, training, and career opportunities. 
http://p.sf.net/sfu/cisco-dev2dev_______________________________________________
Spirit-devel mailing list
Spirit-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-devel
&lt;/pre&gt;</description>
    <dc:creator>TONGARI</dc:creator>
    <dc:date>2011-10-27T16:18:33</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4021">
    <title>[website] Please fix the link to nabble.</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4021</link>
    <description>&lt;pre&gt;Hi,

The nabble link in the support page:
http://boost-spirit.com/home/feedback-and-support/

is dead (http://old.nabble.com/The-Spirit-Parser-Library-f3430.html).

Please change to
http://boost.2283326.n4.nabble.com/The-Spirit-Parser-Library-f2672581.html

Thanks.
------------------------------------------------------------------------------
The demand for IT networking professionals continues to grow, and the
demand for specialized networking skills is growing even more rapidly.
Take a complimentary Learning&amp;lt; at &amp;gt;Cisco Self-Assessment and learn 
about Cisco certifications, training, and career opportunities. 
http://p.sf.net/sfu/cisco-dev2dev_______________________________________________
Spirit-devel mailing list
Spirit-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-devel
&lt;/pre&gt;</description>
    <dc:creator>TONGARI</dc:creator>
    <dc:date>2011-10-26T18:19:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4020">
    <title>Strange behaviour of boost::spirit::get_current_line</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4020</link>
    <description>&lt;pre&gt;Hello.

When content in range [current, upper_bound) contains multiple lines, get_current_line(lower_bound, current, upper_bound) returns iterator range, which includes all lines after current excluding last. Is this behaviour correct? I think,
the returning of only one current line is more expecting behaviour. The patch for that behaviour is attached.

Thanks.------------------------------------------------------------------------------
The demand for IT networking professionals continues to grow, and the
demand for specialized networking skills is growing even more rapidly.
Take a complimentary Learning&amp;lt; at &amp;gt;Cisco Self-Assessment and learn 
about Cisco certifications, training, and career opportunities. 
http://p.sf.net/sfu/cisco-dev2dev_______________________________________________
Spirit-devel mailing list
Spirit-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-devel
&lt;/pre&gt;</description>
    <dc:creator>Скуратович Сергей</dc:creator>
    <dc:date>2011-10-26T08:47:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4010">
    <title>Move generated spirit docs to the sandbox</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/4010</link>
    <description>&lt;pre&gt;Hi,

I removed the fusion docs from trunk a while back, and replaced them
with a redirect to the sourceforge sandbox. I think we agreed to do
this for spirit as well, but I didn't at the time as I hadn't set up
the index yet, but I set that up a little while ago, you can see the
documentation at:

http://boost-sandbox.sourceforge.net/libs/spirit/doc/html/index.html

So, is it okay to go ahead with this? I haven't noticed any comments
on the fusion change. Obviously, I'll make sure they're included
correctly in the beta (which should happen automatically).

Daniel

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2d-oct
&lt;/pre&gt;</description>
    <dc:creator>Daniel James</dc:creator>
    <dc:date>2011-10-16T09:53:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3994">
    <title>Proposal for qi::seek[] directive, next step?</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3994</link>
    <description>&lt;pre&gt;Hi,

In the thread:
http://boost.2283326.n4.nabble.com/Proposal-for-qi-seek-directive-td3830251.html

I've proposed this directive, and I'd like to know your opinions.
Though Thomas Bernard had provided another interesting idea, I'm not
proposing that ATM.

If you consider to accept this component, please let me know and tell me the
next step to take (e.g. submission).


Thanks.
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1_______________________________________________
Spirit-devel mailing list
Spirit-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-devel
&lt;/pre&gt;</description>
    <dc:creator>TONGARI</dc:creator>
    <dc:date>2011-09-28T20:03:38</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3989">
    <title>New feature in Spirit.Lex</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3989</link>
    <description>&lt;pre&gt;Hi readers,

Sorry for people who will receive this email twice, but I didn't know 
where is the best place to post this email.

Yesturday I've started using Spirit.Lex for building a simple 
source-code comment separator. For a given source file, the scanner 
would seperate code from comments matching a special start pattern (here 
"/*&amp;gt;"). Previously I wrote it using OCamllex, which is a very brillant 
lexer from the OCaml toolset.

Indeed, writing such a comment separator with OCamllex is very easy 
thanks to a specific feature that I would call "multi-context" lexer (I 
don't know the real name of this feature). But it is quiet hard to 
implement is using Spirit, at least using my current knowlegde of it. As 
much I understand, implementing it using Spirit would required to use a 
state variable to select the context in witch the lexer is in when it 
consumes some token. However, this not prevent from matching (and 
consuming) tokens that do not belong to the context.

Finally, I aim to use Spirit.Lex bec&lt;/pre&gt;</description>
    <dc:creator>Julien Peeters</dc:creator>
    <dc:date>2011-08-07T13:19:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3981">
    <title>[Spirit Devel] TRUNK IS BROKEN</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3981</link>
    <description>&lt;pre&gt;I just updated to trunk and I believe that an update to proto is
causing serious problems

Thanks
--Robert Nelson

------------------------------------------------------------------------------
What Every C/C++ and Fortran developer Should Know!
Read this article and learn how Intel has extended the reach of its 
next-generation tools to help Windows* and Linux* C/C++ and Fortran 
developers boost performance applications - including clusters. 
http://p.sf.net/sfu/intel-dev2devmay
&lt;/pre&gt;</description>
    <dc:creator>Robert Nelson</dc:creator>
    <dc:date>2011-05-21T23:56:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3979">
    <title>[Spirit Devel] bug in karma_rule.hpp</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3979</link>
    <description>&lt;pre&gt;To reduce compiler includes, I attempted to use karma_rule.hpp instead
of the the full blown karma.hpp

The following minimal program fails to compile on boost trunk:

#include &amp;lt;boost/spirit/include/karma_rule.hpp&amp;gt;

int main()
{
}

Thanks
--Robert Nelson

------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
&lt;/pre&gt;</description>
    <dc:creator>Robert Nelson</dc:creator>
    <dc:date>2011-05-07T00:52:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3978">
    <title>mini-xml</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3978</link>
    <description>&lt;pre&gt;I am trying to extend the Mini-XML example that is in the Spirit::Qi
documentation. I am having trouble with parsing elements with
attributes. The grammar and the rule declarations follow.

            text = lexeme[+(char_ - '&amp;lt;')        [_val += _1]];
            node = (xml | text)                 [_val = _1];


    Name  = NameStartChar *(NameChar);
    NameStartChar = qi::char_("a-zA-Z_");
    Digit = qi::char_("0-9");

    NameChar      = (NameStartChar | '-' | '.' | ':' | Digit);


            start_tag =
                    '&amp;lt;'
            &amp;gt;&amp;gt;  Name
    &amp;gt;&amp;gt;  *(wspc &amp;gt;&amp;gt; attribute)
    &amp;gt;&amp;gt; -wspc
    &amp;gt;&amp;gt; '&amp;gt;';

    wspc = ('\r'|'\t'|'\n'|' ');

    attribute = Name &amp;gt;&amp;gt; '=' &amp;gt;&amp;gt; AttValue;

    AttValue = "'" &amp;gt;&amp;gt; -Name &amp;gt;&amp;gt; "'";

            end_tag =
                    "&amp;lt;/"
                &amp;gt;&amp;gt;  string(_r1)
                &amp;gt;&amp;gt;  '&amp;gt;'
            ;

            xml =
                    start_tag                   [at_c&amp;lt;0&amp;gt;(_val) = _1]
                &amp;gt;&amp;gt;  *node                       [push_back(at_c&amp;lt;1&amp;gt;(_val),&lt;/pre&gt;</description>
    <dc:creator>Michael Roper</dc:creator>
    <dc:date>2011-04-19T04:51:17</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3968">
    <title>spirit grammar graphs</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3968</link>
    <description>&lt;pre&gt;Hi Spirit Developers,

I am working on the MPL.Graph paper &amp;amp; talk for BoostCon.  I want to say a little bit about Spirit grammar rules, because I think it's a good example of a compile-time graph that many people are familiar with.

So I'd like to summarize how type erasure and object references are used in Spirit to produce a graph when expressions only allow us trees.

I will write/say something like this: (needs editing but is this basically correct?)

Spirit generates a compile-time graph of function objects calling each other by tying together nodes of expression trees by common rule references.  The rules use type erasure to make it easy to construct the objects without having to specify insanely complicated types; type erasure is used as a substitute for C++0x "auto".  The technique also allows rule objects to remain uninitialized so they can be referred to before they are defined.

Next, I was going to ask a simple question about type erasure, but I found the answer in the Spirit Rationale.  So I'll &lt;/pre&gt;</description>
    <dc:creator>Gordon Woodhull</dc:creator>
    <dc:date>2011-03-30T22:26:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3967">
    <title>Fusion.Graph?</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3967</link>
    <description>&lt;pre&gt;Hi Fusion Developers,

I am posting to the Spirit list since I think all Fusion developers are Spirit developers.  Please let me know if I have missed someon.

Can I hear some ayes or nays from the Fusion authors for calling a proposed library for simple heterogeneous graph data structures Fusion.Graph?  

I think this name provides the easiest way to explain what the library does: it produces a network of heterogeneous objects which contain pointers or containers of pointers to other objects in the network.  I am not convinced that this is the only way heterogenous graphs could be implemented, but I think it is the simplest.

There is a rudimentary implementation of it available in the metagraph area of the sandbox, which is less than 100 lines because it a very straightforward application of Fusion maps and STL containers.  I have started to implement a version of the BGL graph concepts for this data structure.  It will grow with whatever graph algorithms are appropriate, but the class of heterogenous grap&lt;/pre&gt;</description>
    <dc:creator>Gordon Woodhull</dc:creator>
    <dc:date>2011-03-30T22:26:13</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3964">
    <title>Spirit Attribute Transform Breaks in Darwin gcc-4.2.1</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3964</link>
    <description>&lt;pre&gt;Hi Everyone,

Has anybody been developing on Darwin with the gcc-4.2.1 compiler? I
ask because I tried building cpp-netlib on darwin and just now I find
out that Spirit gets confused with the transformation extension point,
similar to the bug I reported last time. I'm running the regression
test suite now but it would be good to know if there's a known issue
with the platform I'm using at the moment.

Thanks and I hope to hear from you soon!

&lt;/pre&gt;</description>
    <dc:creator>Dean Michael Berris</dc:creator>
    <dc:date>2011-03-28T20:03:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3961">
    <title>SPIRIT_VERSION 0x205 -- Should be 0x2050?</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3961</link>
    <description>&lt;pre&gt;Good day guys, I just checked out the latest Spirit from trunk and I
have code that switches on SPIRIT_VERSION &amp;gt;= 0x2030, which breaks
because the latest version is less than the older version. Should the
version be 0x2050?

&lt;/pre&gt;</description>
    <dc:creator>Dean Michael Berris</dc:creator>
    <dc:date>2011-03-27T03:27:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3957">
    <title>Attribute compatibility and Alternatives</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3957</link>
    <description>&lt;pre&gt;Hi,

This code: http://tinyurl.com/65vjrgg demonstrates the calculator
automatically generating without decorations and with no semantic
actions; just pure attribute propagation.

I will not bother going into the details of how this example works
now, since I do intend to do a couple of tutorials touching on
this. So, please don't worry if this post does not make sense to
you yet. At the very least, let me just say that this *IS* important.
This post is targeting mostly the advanced users and the developers.

Various new features made this possible. Hartmut's recent work that
unifies handling of sequences and loops (e.g. kleene) clearly helped
in achieving this. At that point, I thought about modernizing the
calc-ast example to see how we've come so far in terms of attribute
handling: and all its magic!

At first try, it almost worked! Except for one remaining problem:
Alternatives still do not respect attribute compatibility. So,
I took the challenge and now we have attribute compatibility on
alternatives (&lt;/pre&gt;</description>
    <dc:creator>Joel de Guzman</dc:creator>
    <dc:date>2011-02-19T03:17:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3950">
    <title>iter_pos parser in repository is broken.</title>
    <link>http://comments.gmane.org/gmane.comp.parsers.spirit.devel/3950</link>
    <description>&lt;pre&gt;Due to the recent change of the BOOST_SPIRIT_TERMINAL macro, all
custom parsers that previously worked are now broken.

Attached is a very simple program demonstrating this problem.  I think
the macro should be changed back if at all possible as it breaks all
custom parsers.  In any case, please at least fix the iter_pos parser
so we have a working example of a custom parser.

Thanks
--Robert Nelson
------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb_______________________________________________
Spirit-devel mailing list
Spirit-devel&amp;lt; at &amp;gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/spirit-devel
&lt;/pre&gt;</description>
    <dc:creator>Robert Nelson</dc:creator>
    <dc:date>2011-02-14T19:22:17</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.parsers.spirit.devel">
    <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.devel</link>
  </textinput>
</rdf:RDF>

