summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2019-08-02 08:39:02 +0200
committerGitHub <noreply@github.com>2019-08-02 08:39:02 +0200
commit9d0c34b22345878e61a5765bbd7a48c6791ffe09 (patch)
tree2e169f25c2a96e0ede3594f49e8e9e90406669ef
parentaf2511b7b69de8f97ded168fd1c3c6a9d721e4af (diff)
parent061d421dd9af1e2b614766149e7535563d9197ca (diff)
downloadATCD-9d0c34b22345878e61a5765bbd7a48c6791ffe09.tar.gz
Merge pull request #934 from jwillemsen/master
Add missing include for ACE_OS::sleep
-rw-r--r--TAO/tao/DynamicInterface/DII_Invocation.cpp1
-rw-r--r--TAO/tests/DII_Discard_Deferred/Hello.cpp1
2 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/DynamicInterface/DII_Invocation.cpp b/TAO/tao/DynamicInterface/DII_Invocation.cpp
index 718e97f4cf9..65632313631 100644
--- a/TAO/tao/DynamicInterface/DII_Invocation.cpp
+++ b/TAO/tao/DynamicInterface/DII_Invocation.cpp
@@ -140,7 +140,6 @@ namespace TAO
// UserException we can assume that the request was
// completed.
throw ::CORBA::UNKNOWN (TAO::VMCID, CORBA::COMPLETED_YES);
-
}
diff --git a/TAO/tests/DII_Discard_Deferred/Hello.cpp b/TAO/tests/DII_Discard_Deferred/Hello.cpp
index 84154c9ae06..d889c5adf32 100644
--- a/TAO/tests/DII_Discard_Deferred/Hello.cpp
+++ b/TAO/tests/DII_Discard_Deferred/Hello.cpp
@@ -1,5 +1,6 @@
// -*- C++ -*-
#include "Hello.h"
+#include "ace/OS_NS_unistd.h"
Hello::Hello (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb))