summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/singleton.h3
-rw-r--r--src/utils/timer.h3
2 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/singleton.h b/src/utils/singleton.h
index 4535439..c3a8e2f 100644
--- a/src/utils/singleton.h
+++ b/src/utils/singleton.h
@@ -50,9 +50,6 @@ class Singleton
throw()
{}
- /**
- * Destructor.
- */
virtual ~Singleton()
throw()
{}
diff --git a/src/utils/timer.h b/src/utils/timer.h
index d64ed54..87c94a2 100644
--- a/src/utils/timer.h
+++ b/src/utils/timer.h
@@ -39,6 +39,9 @@ class Timer
public:
/**
* Constructor.
+ *
+ * @param ms the interval in milliseconds
+ * @param createActive whether the timer should be implicitly started
*/
Timer(unsigned int ms, bool createActive = true);