summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-09-08 05:25:06 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-09-08 05:25:06 +0000
commitc00a478b55a15be59defcaaa55348a2d13265678 (patch)
tree3387f320770e4dd63e496ad74174359160e8ce79
parent35175da06a7bf3752aa8d4213c4cc796037e58d6 (diff)
downloadATCD-c00a478b55a15be59defcaaa55348a2d13265678.tar.gz
ChangeLogTag:Tue Sep 7 22:14:43 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
-rw-r--r--TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp10
-rw-r--r--TAO/CIAO/ChangeLog1
2 files changed, 6 insertions, 5 deletions
diff --git a/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp b/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp
index 41856f9d4d6..cd940a233ee 100644
--- a/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp
+++ b/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp
@@ -991,19 +991,19 @@ namespace
}
virtual void
- pre (InParameter& p)
+ pre (InParameter&)
{
os << "in ";
}
virtual void
- pre (OutParameter& p)
+ pre (OutParameter&)
{
os << "out ";
}
virtual void
- pre (InOutParameter& p)
+ pre (InOutParameter&)
{
os << "inout ";
}
@@ -1119,7 +1119,7 @@ namespace
}
virtual void
- names (Type& h)
+ names (Type&)
{
os << "{"
<< STRS[COMP_EC] << " "
@@ -1464,7 +1464,7 @@ namespace
}
virtual void
- implements (Type& i)
+ implements (Type&)
{
// os << " : ";
diff --git a/TAO/CIAO/ChangeLog b/TAO/CIAO/ChangeLog
index 5c5ed3a8c2b..1c45ffa681d 100644
--- a/TAO/CIAO/ChangeLog
+++ b/TAO/CIAO/ChangeLog
@@ -2,6 +2,7 @@ Tue Sep 7 22:14:43 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* CCF/CCF/IDL2/SemanticGraph/Elements.hpp:
* CCF/CCF/IDL2/Traversal/Elements.hpp:
+ * CIDLC/ExecutorMappingGenerator.cpp:
Fixed unused argument warnings.