summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Janes <mark.a.janes@intel.com>2017-03-16 05:56:33 -0700
committerMark Janes <mark.a.janes@intel.com>2017-06-19 14:04:51 -0700
commitfef84c54bc06e152084a02cdefa6dc10e9bbca9e (patch)
treedc7c9a2fa1e19173d20e9e23af0ffd1a6f90f79f
parent016f0856c813a9185fa26689b248fa8ced3a586c (diff)
Style: remove unused variables
-rw-r--r--retrace/daemon/glframe_os.hpp1
-rw-r--r--retrace/daemon/glframe_stderr.hpp2
2 files changed, 1 insertions, 2 deletions
diff --git a/retrace/daemon/glframe_os.hpp b/retrace/daemon/glframe_os.hpp
index 4d4386a4..579a28a9 100644
--- a/retrace/daemon/glframe_os.hpp
+++ b/retrace/daemon/glframe_os.hpp
@@ -57,7 +57,6 @@ class Semaphore : NoCopy, NoAssign, NoMove {
}
private:
unsigned m_count;
- unsigned m_max_count;
std::mutex m_mutex;
std::condition_variable m_cv;
};
diff --git a/retrace/daemon/glframe_stderr.hpp b/retrace/daemon/glframe_stderr.hpp
index eb3104af..e906da80 100644
--- a/retrace/daemon/glframe_stderr.hpp
+++ b/retrace/daemon/glframe_stderr.hpp
@@ -46,7 +46,7 @@ class StdErrRedirect : public OutputPoller {
class NoRedirect : public OutputPoller {
public:
NoRedirect() {}
- void poll(int current_program, StateTrack *cb) {}
+ void poll(int, StateTrack *) {}
~NoRedirect() {}
void init() {}
};