I am just starting to follow in this list. Is anyone else working with VMS?

Also, I am finding as I compile, I get compilation errors on a small
percentage of the library, such as:

        };
        .^
%CXX-W-EXTRASEMI, Extraneous semicolon.
                At line number 166 in 
_SPOCK$DKA100:[ONLSOURCE.XML4CPP.XML4CSRC3_1_0.SRC.PARSERS]DOMPARSER.CPP;1.

%VCG-I-SUMMARY, Completed with 0 error(s), 1 warning(s), and
                0 informational messages.
                At line number 614 in 
_SPOCK$DKA100:[ONLSOURCE.XML4CPP.XML4CSRC3_1_0.SRC.PARSERS]DOMPARSER.CPP;1.

Apparently, within some source files, and only for some functions,
there is a semi-colon after the final closing curley-brace, such
as:

    DOM_Attr::DOM_Attr()
    : DOM_Node(null)
    {
    };

Which needs to be change to:

    DOM_Attr::DOM_Attr()
    : DOM_Node(null)
    {
    }

to compile without diagnostics with VMS.

Best regards - Lee Gillie
______________________________________________________________________
Lee Gillie, CCP - [EMAIL PROTECTED] - PH:509-484-3400 #217 - FX:509-484-3806
Online Data Processing, Inc. - 3501 N. Haven -  Spokane, WA 99207-8500

Reply via email to