summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza@ociweb.com>2019-01-07 10:49:55 -0600
committerAdam Mitz <mitza@ociweb.com>2019-01-07 10:49:55 -0600
commite79f3a06d218860ac8f6d767df121fa8da006fd2 (patch)
treefd89ab315477a3cd8c762eeb84f33f4aa3a67a33
parent8bc095556b48dabfd29989936186d158fc835236 (diff)
downloadATCD-e79f3a06d218860ac8f6d767df121fa8da006fd2.tar.gz
TAO_IDL: make recent changes work with older MSVC
-rw-r--r--TAO/TAO_IDL/ast/ast_typedef.cpp5
-rw-r--r--TAO/TAO_IDL/include/idl_global.h1
2 files changed, 5 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/ast/ast_typedef.cpp b/TAO/TAO_IDL/ast/ast_typedef.cpp
index 760bf9b55c7..38fc2080164 100644
--- a/TAO/TAO_IDL/ast/ast_typedef.cpp
+++ b/TAO/TAO_IDL/ast/ast_typedef.cpp
@@ -74,6 +74,9 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
#include "ace/Log_Msg.h"
+// FUZZ: disable check_for_streams_include
+#include "ace/streams.h"
+
AST_Decl::NodeType const
AST_Typedef::NT = AST_Decl::NT_typedef;
@@ -153,7 +156,7 @@ AST_Typedef::owns_base_type (bool val)
// Dump this AST_Typedef node to the ostream o.
void
-AST_Typedef::dump (ACE_OSTREAM_TYPE&o)
+AST_Typedef::dump (ACE_OSTREAM_TYPE &o)
{
this->dump_i (o, "typedef ");
o << *ref_type_;
diff --git a/TAO/TAO_IDL/include/idl_global.h b/TAO/TAO_IDL/include/idl_global.h
index b5838e0ff58..dae0328872e 100644
--- a/TAO/TAO_IDL/include/idl_global.h
+++ b/TAO/TAO_IDL/include/idl_global.h
@@ -74,6 +74,7 @@ trademarks or registered trademarks of Sun Microsystems, Inc.
#include "ast_expression.h"
#include "ast_predefined_type.h"
+#include "utl_identifier.h"
#include "utl_stack.h"
#include "fe_utils.h"
#include "idl_version.h"