http://www.riscos.info/bugzilla3/show_bug.cgi?id=210


John Tytgat <john.tyt...@aaug.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID




--- Comment #1 from John Tytgat <john.tyt...@aaug.net>  2010-09-18 07:41:38 ---
CMunge does not have \ as continuation character but supports comma to separate
multiple entries over possibly several lines (just as CMHG).  Cfr its
documentation.  So this is an invalid bug.

Instead of:

--8<--
error_identifiers: \
    kErr_Error1("Error1") \
    kErr_Error2("Error2") \
    kErr_Error3("Error3")
--8<--

we should use:

--8<--
error_identifiers: kErr_Error1("Error1"),
    kErr_Error2("Error2"),
    kErr_Error3("Error3")
--8<--

if we really want to use multiple lines.

The change in C/C++ preprocessor in gcc 4.6 is further discussed in
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=45696 and likewise not considered
as a bug (very rightly).

-- 
Configure bugmail: http://www.riscos.info/bugzilla3/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.

_______________________________________________
GCCSDK mailing list gcc@gccsdk.riscos.info
Bugzilla: http://www.riscos.info/bugzilla/index.cgi
List Info: http://www.riscos.info/mailman/listinfo/gcc
Main Page: http://www.riscos.info/index.php/GCCSDK

Reply via email to