summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorboris <boris@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-01-06 03:38:58 +0000
committerboris <boris@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2004-01-06 03:38:58 +0000
commitb5c3b2f748e766d35a5b2f5345c4969f38520b24 (patch)
tree5fbe58ec9906bfd5837984f73f982479530c77ea
parent6541d9319f23e2ec500712a1a6c90c4434df4593 (diff)
downloadATCD-b5c3b2f748e766d35a5b2f5345c4969f38520b24.tar.gz
ChangeLogTag: Mon Jan 5 21:38:53 2004 <boris@kolpackov.net>
-rw-r--r--TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/ExecutorMappingGenerator.cpp2
-rw-r--r--TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-0.idl7
-rw-r--r--TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp2
-rw-r--r--TAO/CIAO/CIDLC/cidlc.cpp2
-rw-r--r--TAO/CIAO/ChangeLog18
5 files changed, 27 insertions, 4 deletions
diff --git a/TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/ExecutorMappingGenerator.cpp b/TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/ExecutorMappingGenerator.cpp
index 2cfde86437c..68ad6314c60 100644
--- a/TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/ExecutorMappingGenerator.cpp
+++ b/TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/ExecutorMappingGenerator.cpp
@@ -1169,7 +1169,7 @@ namespace
bool
has_elements (Type& m)
{
- bool r;
+ bool r (false);
Traversal::Module module;
Traversal::Defines defines;
diff --git a/TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-0.idl b/TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-0.idl
index 73ba9b4276d..cba2229b654 100644
--- a/TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-0.idl
+++ b/TAO/CIAO/CCF/Example/CIDL/LocalExecutorMapping/test-0.idl
@@ -2,6 +2,13 @@
// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id : $Id$
+module Empty
+{
+ interface I
+ {
+ };
+};
+
module M
{
interface I {};
diff --git a/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp b/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp
index 0d2b2d04c0c..945999bbc9f 100644
--- a/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp
+++ b/TAO/CIAO/CIDLC/ExecutorMappingGenerator.cpp
@@ -1169,7 +1169,7 @@ namespace
bool
has_elements (Type& m)
{
- bool r;
+ bool r (false);
Traversal::Module module;
Traversal::Defines defines;
diff --git a/TAO/CIAO/CIDLC/cidlc.cpp b/TAO/CIAO/CIDLC/cidlc.cpp
index 447200ba42a..35f123b9f91 100644
--- a/TAO/CIAO/CIDLC/cidlc.cpp
+++ b/TAO/CIAO/CIDLC/cidlc.cpp
@@ -144,7 +144,7 @@ main (int argc, char* argv[])
std::cout << t;
}
-
+
return 0;
}
diff --git a/TAO/CIAO/ChangeLog b/TAO/CIAO/ChangeLog
index ddfce72f3e8..0bbed045276 100644
--- a/TAO/CIAO/ChangeLog
+++ b/TAO/CIAO/ChangeLog
@@ -1,10 +1,26 @@
+Mon Jan 5 21:38:53 2004 <boris@kolpackov.net>
+
+ * CCF/Example/CIDL/LocalExecutorMapping/ExecutorMappingGenerator.cpp:
+ * CIDLC/ExecutorMappingGenerator.cpp:
+
+ Fixed uninitialized variable bug that resulted in generation
+ of unused modules.
+
+ * CCF/Example/CIDL/LocalExecutorMapping/test-0.idl:
+
+ Added unused module to the test case.
+
+ * CIDLC/cidlc.cpp:
+
+ Cosmetic chnages.
+
Mon Jan 5 20:31:18 2004 Jeff Parsons <j.parsons@vanderbilt.edu>
* CIDLC/RepositoryIdGenerator.cpp:
* CIDLC/RepositoryIdGenerator.hpp:
* CIDLC/ServantHeaderGenerator.cpp:
* CIDLC/ServantSourceGenerator.cpp:
-
+
Fixed typos in servant code generation.
Mon Jan 5 19:34:44 2004 Boris Kolpackov <boris@dre.vanderbilt.edu>