summaryrefslogtreecommitdiff
path: root/ACE/ace/Trace.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-17 13:25:21 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-17 13:25:21 +0100
commit4067667d2179ec33eecb7d0d2b2f6ae7127cc01c (patch)
treedec72f9c782dfc86af362efe28817c8e6a6a151e /ACE/ace/Trace.h
parent39d3174f11de3c59984043c45f9be30a7aa42dd9 (diff)
downloadATCD-4067667d2179ec33eecb7d0d2b2f6ae7127cc01c.tar.gz
Remove redundant void
Diffstat (limited to 'ACE/ace/Trace.h')
-rw-r--r--ACE/ace/Trace.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/ACE/ace/Trace.h b/ACE/ace/Trace.h
index dee73c6ed33..eb49cf2fdb0 100644
--- a/ACE/ace/Trace.h
+++ b/ACE/ace/Trace.h
@@ -42,29 +42,29 @@ public:
/// Perform the second part of the trace, which prints out the NAME
/// as the function is exited.
- ~ACE_Trace (void);
+ ~ACE_Trace ();
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;
// = Control the tracing level.
/// Determine if tracing is enabled or not
- static bool is_tracing(void);
+ static bool is_tracing();
/// Enable the tracing facility.
- static void start_tracing (void);
+ static void start_tracing ();
/// Disable the tracing facility.
- static void stop_tracing (void);
+ static void stop_tracing ();
/// Change the nesting indentation level.
static void set_nesting_indent (int indent);
/// Get the nesting indentation level.
- static int get_nesting_indent (void);
+ static int get_nesting_indent ();
/// Dump the state of an object.
- void dump (void) const;
+ void dump () const;
private:
// Keeps track of how deeply the call stack is nested (this is