diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-12-07 15:20:51 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2020-12-07 15:20:51 +0100 |
commit | 703b0e6522f91e7de7b09b03d68b28623fd0dd17 (patch) | |
tree | f63091592635215d03b258aab058e3169b5683ad /ACE/ace/Trace.cpp | |
parent | 884dcea8b196f72cb995de9f46d61a6ee6521222 (diff) | |
download | ATCD-703b0e6522f91e7de7b09b03d68b28623fd0dd17.tar.gz |
Remove redundant void from the core ACE library files
Diffstat (limited to 'ACE/ace/Trace.cpp')
-rw-r--r-- | ACE/ace/Trace.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Trace.cpp b/ACE/ace/Trace.cpp index 9259a8a1909..9d7397897a0 100644 --- a/ACE/ace/Trace.cpp +++ b/ACE/ace/Trace.cpp @@ -25,7 +25,7 @@ bool ACE_Trace::enable_tracing_ = ACE_Trace::DEFAULT_TRACING; ACE_ALLOC_HOOK_DEFINE(ACE_Trace) void -ACE_Trace::dump (void) const +ACE_Trace::dump () const { #if defined (ACE_HAS_DUMP) #endif /* ACE_HAS_DUMP */ @@ -34,7 +34,7 @@ ACE_Trace::dump (void) const // Determine whether or not tracing is enabled bool -ACE_Trace::is_tracing (void) +ACE_Trace::is_tracing () { return ACE_Trace::enable_tracing_; } @@ -42,7 +42,7 @@ ACE_Trace::is_tracing (void) // Enable the tracing facility. void -ACE_Trace::start_tracing (void) +ACE_Trace::start_tracing () { ACE_Trace::enable_tracing_ = true; } @@ -50,7 +50,7 @@ ACE_Trace::start_tracing (void) // Disable the tracing facility. void -ACE_Trace::stop_tracing (void) +ACE_Trace::stop_tracing () { ACE_Trace::enable_tracing_ = false; } @@ -66,7 +66,7 @@ ACE_Trace::set_nesting_indent (int indent) // Get the nesting indentation level. int -ACE_Trace::get_nesting_indent (void) +ACE_Trace::get_nesting_indent () { return ACE_Trace::nesting_indent_; } @@ -109,7 +109,7 @@ ACE_Trace::ACE_Trace (const ACE_TCHAR *n, // Perform the second part of the trace, which prints out the NAME as // the function is exited. -ACE_Trace::~ACE_Trace (void) +ACE_Trace::~ACE_Trace () { // If ACE has not yet been initialized, don't try to trace... there's // too much stuff not yet initialized. |