Skip to content

Commit

Permalink
Fix Misspelled "DYNAMIC"
Browse files Browse the repository at this point in the history
  • Loading branch information
iguessthislldo committed Apr 24, 2024
1 parent dfb2510 commit 6a029a5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion MPC/modules/IDLBase.pm
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ sub do_cached_parse {
my %macros = (
__OPENDDS_IDL => 1,
__OPENDDS_MPC => 1,
OPENDDS_HIDE_DYNMIC_DATA => 1,
OPENDDS_HIDE_DYNAMIC_DATA => 1,
);
my %mparams;
my @include;
Expand Down
12 changes: 6 additions & 6 deletions dds/DdsDynamicData.idl
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
#define OPENDDS_DDS_DYNAMIC_DATA_IDL

#ifndef OPENDDS_SAFETY_PROFILE
# ifndef OPENDDS_HIDE_DYNMIC_DATA
# ifndef OPENDDS_HIDE_DYNAMIC_DATA
# include <dds/DdsDcpsInfrastructure.idl>
# include <dds/DdsDcpsDomain.idl>
# include <dds/DdsDynamicDataSeq.idl>
# endif // OPENDDS_HIDE_DYNMIC_DATA
# endif

module DDS {
local interface DynamicType;
# ifndef OPENDDS_HIDE_DYNMIC_DATA
# ifndef OPENDDS_HIDE_DYNAMIC_DATA
valuetype TypeDescriptor;

typedef sequence<string> IncludePathSeq;
Expand Down Expand Up @@ -158,11 +158,11 @@ module DDS {

void clear();
};
# endif // OPENDDS_HIDE_DYNMIC_DATA
# endif // OPENDDS_HIDE_DYNAMIC_DATA

local interface DynamicData;

# ifndef OPENDDS_HIDE_DYNMIC_DATA
# ifndef OPENDDS_HIDE_DYNAMIC_DATA
local interface DynamicDataFactoryInterf {
// Implemented in C++
// static DynamicDataFactory get_instance();
Expand Down Expand Up @@ -403,7 +403,7 @@ module DDS {
in MemberId id,
in WstringSeq value);
}; // local interface DynamicData
# endif // OPENDDS_HIDE_DYNMIC_DATA
# endif // OPENDDS_HIDE_DYNAMIC_DATA
};

#endif // OPENDDS_SAFETY_PROFILE
Expand Down
2 changes: 1 addition & 1 deletion java/idl2jni/codegen/be_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ BE_post_init(char *[], long)
idl_global->unknown_annotations_ = IDL_GlobalData::UNKNOWN_ANNOTATIONS_IGNORE;

DRV_cpp_putarg("-D__OPENDDS_IDL_HAS_ANNOTATIONS");
DRV_cpp_putarg("-DOPENDDS_HIDE_DYNMIC_DATA");
DRV_cpp_putarg("-DOPENDDS_HIDE_DYNAMIC_DATA");

idl_global->eval(
"module OpenDDS {module internal {@annotation hidden_op_in_java {string impl;};};};\n");
Expand Down

0 comments on commit 6a029a5

Please sign in to comment.