diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-07 07:54:07 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1999-06-07 07:54:07 +0000 |
commit | a9cd5e907898b9179b8965fd31f05b0262fbe378 (patch) | |
tree | 7faf1645adf3ccbc19ad373da1554e6b32b42d20 /TAO/TAO_IDL/include | |
parent | 9cf699859a5763960714e5c56211662089cecbea (diff) | |
download | ATCD-a9cd5e907898b9179b8965fd31f05b0262fbe378.tar.gz |
.
Diffstat (limited to 'TAO/TAO_IDL/include')
-rw-r--r-- | TAO/TAO_IDL/include/fe_private.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/include/fe_private.h b/TAO/TAO_IDL/include/fe_private.h index 979289c1924..8465fa4ff37 100644 --- a/TAO/TAO_IDL/include/fe_private.h +++ b/TAO/TAO_IDL/include/fe_private.h @@ -90,18 +90,19 @@ trademarks or registered trademarks of Sun Microsystems, Inc. // define an entry for the C++ keyword and its mapping struct TAO_IDL_CPP_Keyword_Entry { - char *keyword_; - char *mapping_; + const char *keyword_; + const char *mapping_; }; -// define a table that provides the lookup for the C++ keyword. The lookup uses -// a perfect hash function class TAO_IDL_CPP_Keyword_Table { + // = TITLE + // Define a table that provides the lookup for the C++ + // keyword. The lookup uses a perfect hash function private: unsigned int hash (const char *str, unsigned int len); public: const TAO_IDL_CPP_Keyword_Entry *lookup (const char *str, unsigned int len); }; -#endif // _FE_FE_HH +#endif /* _FE_FE_HH */ |