diff options
-rw-r--r-- | retrace/daemon/glframe_os.hpp | 1 | ||||
-rw-r--r-- | retrace/daemon/glframe_stderr.hpp | 2 |
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() {} }; |