http://llvm.org/bugs/show_bug.cgi?id=14255

             Bug #: 14255
           Summary: _GLIBCXX_DEBUG broken?
           Product: libc++
           Version: unspecified
          Platform: Macintosh
        OS/Version: MacOS X
            Status: NEW
          Severity: release blocker
          Priority: P
         Component: All Bugs
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected]
    Classification: Unclassified


The following program prints "invalid quantifier" when compiled with "g++ -I
~/src/boost/svn/release  -D_GLIBCXX_DEBUG bug.cpp".  Of course this could
always be a bug in Boost.XPressive, but g++ (with libstdc++) doesn't have this
problem.  Haven't gone further to track it down, sorry. I've enclosed
preprocessed source.

#include <boost/xpressive/xpressive.hpp>

int main()
{
    try
    {
        boost::xpressive::sregex::compile("x{4}");
    }
    catch(std::exception& e)
    {
        std::cout << e.what() << std::endl;
    }
}

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to