ICU-3798 Remove C++ comments causing certain compiler errors.

X-SVN-Rev: 23593
This commit is contained in:
Michael Ow 2008-03-14 18:51:29 +00:00
parent a2e6d06400
commit 20a26f4c79

View File

@ -47,7 +47,7 @@ enum
ICUDATADIR,
WRITE_JAVA,
COPYRIGHT,
// PACKAGE_NAME, // This option is deprecated and should not be used ever.
/* PACKAGE_NAME, This option is deprecated and should not be used ever. */
BUNDLE_NAME,
WRITE_XLIFF,
STRICT,
@ -69,7 +69,7 @@ UOption options[]={
UOPTION_ICUDATADIR,
UOPTION_WRITE_JAVA,
UOPTION_COPYRIGHT,
//UOPTION_PACKAGE_NAME, // This option is deprecated and should not be used ever.
/* UOPTION_PACKAGE_NAME, This option is deprecated and should not be used ever. */
UOPTION_BUNDLE_NAME,
UOPTION_DEF( "write-xliff", 'x', UOPT_OPTIONAL_ARG),
UOPTION_DEF( "strict", 'k', UOPT_NO_ARG), /* 14 */
@ -143,9 +143,9 @@ main(int argc,
fprintf(stderr,
"\t-j or --write-java write a Java ListResourceBundle for ICU4J, followed by optional encoding\n"
"\t defaults to ASCII and \\uXXXX format.\n");
// This option is deprecated and should not be used ever.
//"\t-p or --package-name For ICU4J: package name for writing the ListResourceBundle for ICU4J,\n"
//"\t defaults to com.ibm.icu.impl.data\n");
/* This option is deprecated and should not be used ever.
"\t-p or --package-name For ICU4J: package name for writing the ListResourceBundle for ICU4J,\n"
"\t defaults to com.ibm.icu.impl.data\n"); */
fprintf(stderr,
"\t-b or --bundle-name bundle name for writing the ListResourceBundle for ICU4J,\n"
"\t defaults to LocaleElements\n"
@ -186,8 +186,8 @@ main(int argc,
if(options[DESTDIR].doesOccur) {
outputDir = options[DESTDIR].value;
}
// This option is deprecated and should never be used.
/*if(options[PACKAGE_NAME].doesOccur) {
/* This option is deprecated and should never be used.
if(options[PACKAGE_NAME].doesOccur) {
gPackageName = options[PACKAGE_NAME].value;
if(!strcmp(gPackageName, "ICUDATA"))
{