Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
    * TAO/tao/PI/Interceptor_List_T.h:
    * TAO/tests/DynValue_Test/Analyzer.cpp:
  • Loading branch information
jwillemsen committed May 21, 2024
1 parent d79b50d commit d7df272
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion TAO/tao/PI/Interceptor_List_T.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ namespace TAO
size_t size () const;

private:
typedef ACE_Array_Base<RegisteredInterceptor > RegisteredArray;
typedef ACE_Array_Base<RegisteredInterceptor> RegisteredArray;

/// Dynamic array of registered interceptors.
RegisteredArray interceptors_;
Expand Down
4 changes: 2 additions & 2 deletions TAO/tests/DynValue_Test/Analyzer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,13 +256,13 @@ DynAnyAnalyzer::analyze (
base = get_correct_base_type (
base_types,
sub_member_number);
const char *const visability =
const char *const visibility =
((CORBA::PRIVATE_MEMBER ==
base->member_visibility (sub_member_number)) ?
"Private" : "Public ");
tab ("[");
ACE_DEBUG ((LM_DEBUG, "%03u] %C \"%C\": ",
++member_number, visability, fn.in () ));
++member_number, visibility, fn.in () ));
if (CORBA::is_nil (cc.in ()))
{
ACE_DEBUG ((LM_DEBUG, " {Null}\n"));
Expand Down

0 comments on commit d7df272

Please sign in to comment.