summaryrefslogtreecommitdiff
path: root/ACE/ace/Trace.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Trace.cpp')
-rw-r--r--ACE/ace/Trace.cpp12
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.