summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL')
-rw-r--r--TAO/TAO_IDL/be/be_codegen.cpp2
-rw-r--r--TAO/TAO_IDL/driver/drv_preproc.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/TAO/TAO_IDL/be/be_codegen.cpp b/TAO/TAO_IDL/be/be_codegen.cpp
index 4b0d85a873f..0903df6bbc4 100644
--- a/TAO/TAO_IDL/be/be_codegen.cpp
+++ b/TAO/TAO_IDL/be/be_codegen.cpp
@@ -327,7 +327,7 @@ TAO_CodeGen::start_client_header (const char *fname)
// Generate the regeneration check.
*this->client_header_ << "\n\n#if TAO_MAJOR_VERSION != " << TAO_MAJOR_VERSION
<< " || TAO_MINOR_VERSION != " << TAO_MINOR_VERSION
- << " || TAO_BETA_VERSION != " << TAO_BETA_VERSION
+ << " || TAO_MICRO_VERSION != " << TAO_MICRO_VERSION
<< "\n#error This file should be regenerated with TAO_IDL"
<< "\n#endif";
diff --git a/TAO/TAO_IDL/driver/drv_preproc.cpp b/TAO/TAO_IDL/driver/drv_preproc.cpp
index 0c5a0cd1718..6c699eda03d 100644
--- a/TAO/TAO_IDL/driver/drv_preproc.cpp
+++ b/TAO/TAO_IDL/driver/drv_preproc.cpp
@@ -272,7 +272,7 @@ DRV_cpp_init (void)
"-D__TAO_IDL=0x%2.2d%2.2d%2.2d",
ACE_MAJOR_VERSION,
ACE_MINOR_VERSION,
- ACE_BETA_VERSION);
+ ACE_MICRO_VERSION);
DRV_cpp_putarg (version_option);
DRV_cpp_putarg ("-I.");