summaryrefslogtreecommitdiff
path: root/idlc/source/idlcmain.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/source/idlcmain.cxx')
-rw-r--r--idlc/source/idlcmain.cxx10
1 files changed, 8 insertions, 2 deletions
diff --git a/idlc/source/idlcmain.cxx b/idlc/source/idlcmain.cxx
index 5ec81f224782..e17714d5a88b 100644
--- a/idlc/source/idlcmain.cxx
+++ b/idlc/source/idlcmain.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: idlcmain.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: jsc $ $Date: 2002-11-13 17:24:54 $
+ * last change: $Author: obo $ $Date: 2003-10-20 13:07:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -93,6 +93,12 @@ int SAL_CALL main( int argc, char** argv )
fprintf(stdout, "%s: compile '%s' ... \n",
options.getProgramName().getStr(), files[i].getStr());
nErrors = compileFile(sysFileName);
+
+ if ( idlc()->getWarningCount() )
+ fprintf(stdout, "%s: detected %d warnings compiling file '%s'\n",
+ options.getProgramName().getStr(), idlc()->getWarningCount(),
+ files[i].getStr(), options.prepareVersion().getStr());
+
if ( nErrors )
{
OString strippedFileName(sysFileName.copy(sysFileName.lastIndexOf(SEPARATOR) + 1));