summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-09-18 11:03:24 +0000
committerjtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-09-18 11:03:24 +0000
commitf1702ef4574eb5714178cf2b4a39330f39ec0775 (patch)
tree54394a4ac3e0066a0cfffa9b3fb6268aa91f843a
parente3bafd88c499262ca755decbf7b8a4538af5fb23 (diff)
downloadATCD-f1702ef4574eb5714178cf2b4a39330f39ec0775.tar.gz
ChangeLogTag: Thu Sep 18 11:02:03 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
-rw-r--r--TAO/ChangeLog15
-rw-r--r--TAO/orbsvcs/orbsvcs/Trader/Constraint_Nodes.cpp3
2 files changed, 13 insertions, 5 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 135e581db31..0f1e6878763 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,7 +1,14 @@
+Thu Sep 18 11:02:03 UTC 2008 J.T. Conklin <jtc@acorntoolworks.com>
+
+ * orbsvcs/orbsvcs/Trader/Constraint_Nodes.cpp:
+
+ Explicitly initialize base class in TAO_Literal_Constraint copy
+ constructor.
+
Wed Sep 17 18:59:57 UTC 2008 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_sunsoft.cpp (print):
-
+
Changed signed long long case to be similar to unsigned
long long, using ACE macros that expand to the correct
thing whether native 64-bit integers are defined or not.
@@ -19,13 +26,13 @@ Wed Sep 17 18:48:41 UTC 2008 Phil Mesnier <mesnier_p@ociweb.com>
Correct the example so that -ORB* parameters, such as debug
level could be supplied via the command line.
-
+
* tao/Messaging/AMH_Response_Handler.cpp:
AMH was not correctly handling codeset translation.
-
+
* tao/ORB_Core.cpp:
-
+
Reprioritize the debug output generated by the run() method to
only be output for debug levels greater than 10. The motivation
for this is that it is difficult to wade through hundreds or
diff --git a/TAO/orbsvcs/orbsvcs/Trader/Constraint_Nodes.cpp b/TAO/orbsvcs/orbsvcs/Trader/Constraint_Nodes.cpp
index 24df63ba535..dd8347cad8a 100644
--- a/TAO/orbsvcs/orbsvcs/Trader/Constraint_Nodes.cpp
+++ b/TAO/orbsvcs/orbsvcs/Trader/Constraint_Nodes.cpp
@@ -301,7 +301,8 @@ TAO_Literal_Constraint::TAO_Literal_Constraint (void)
TAO_Literal_Constraint::
TAO_Literal_Constraint (const TAO_Literal_Constraint& lit)
- : type_ (TAO_UNKNOWN)
+ : TAO_Constraint(),
+ type_ (TAO_UNKNOWN)
{
this->copy (lit);
}