Boost logo

Boost :

From: SourceForge.net (noreply_at_[hidden])
Date: 2007-02-14 08:32:08


Bugs item #1659760, was opened at 2007-02-14 13:32
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1659760&group_id=7586

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: regex
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: JeffreyRen (jeffreyren)
Assigned to: John Maddock (johnmaddock)
Summary: regex v1.33.1 match_results::format compile error in vc6

Initial Comment:
Hello,

I try boost v1.33.1 regex match_results::format in msvc6 sp6, but receive the following error:
        c:\program files\microsoft visual studio\vc98\include\xlocnum(267) : fatal error C1001: INTERNAL COMPILER ERROR
        (compiler file 'msc1.cpp', line 1794)
         Please choose the Technical Support command on the Visual C++
         Help menu, or open the Technical Support help file for more information

Reproduce:
VC6-->Create a MDI application --> add the following code:
    string strfind = "b(.)";
        string Str = "abc";
        string fmt = "x\\1y";

        regex reg(strfind);
        smatch match;
        bool bFind = regex_search(Str, match, reg, match_default);
        if(bFind)
        {
                string Rep = match.format(fmt, format_default);
        }

I want to know if there is any method to support match_results::format compile?
Thanks.

Jeffrey

----------------------------------------------------------------------

You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=107586&aid=1659760&group_id=7586

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-bugs mailing list
Boost-bugs_at_[hidden]
https://lists.sourceforge.net/lists/listinfo/boost-bugs


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk