summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/fe/fe_init.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/fe/fe_init.cpp')
-rw-r--r--TAO/TAO_IDL/fe/fe_init.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/TAO_IDL/fe/fe_init.cpp b/TAO/TAO_IDL/fe/fe_init.cpp
index 80fa9bc722f..f73ca581725 100644
--- a/TAO/TAO_IDL/fe/fe_init.cpp
+++ b/TAO/TAO_IDL/fe/fe_init.cpp
@@ -613,8 +613,8 @@ FE_init (void)
idl_global->set_main_filename (0);
idl_global->set_real_filename (0);
idl_global->set_stripped_filename (0);
- idl_global->set_import (I_TRUE);
- idl_global->set_in_main_file (I_FALSE);
+ idl_global->set_import (true);
+ idl_global->set_in_main_file (false);
idl_global->set_lineno (-1);
idl_global->set_prog_name (0);
@@ -628,7 +628,7 @@ FE_init (void)
idl_global->set_include_file_names (0);
idl_global->set_n_include_file_names (0);
idl_global->set_parse_state (IDL_GlobalData::PS_NoState);
- idl_global->preserve_cpp_keywords (I_FALSE);
+ idl_global->preserve_cpp_keywords (false);
// Put an empty prefix on the stack for the global scope.
idl_global->pragma_prefixes ().push (ACE::strnew (""));
@@ -673,7 +673,7 @@ FE_populate (void)
fe_populate_global_scope (idl_global->root ());
// Set flag to indicate we are processing the main file now.
- idl_global->set_in_main_file (I_TRUE);
+ idl_global->set_in_main_file (true);
// Populate the IDL keyword container, for checking local identifiers.
fe_populate_idl_keywords ();