Skip to content

Commit

Permalink
finding out why compile is failing, wip
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldoglas committed Oct 3, 2024
1 parent 645c26e commit 6ebc14d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libstuff/ResourceMonitorThread.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ResourceMonitorThread: public thread
template<typename F, typename... Args,
typename = _Require<__not_<is_same<__remove_cvref_t<F>, thread>>>>
explicit
ResourceMonitorThread(F&& __f, Args&&... __args): thread(&wrapper<F, Args...>, forward<F>(__f), forward<Args>(__args)...){};
ResourceMonitorThread(F&& __f, Args&&... __args): thread(wrapper<F, Args...>, forward<F>(__f), forward<Args>(__args)...){};

string getThreadName();
virtual ~ResourceMonitorThread();
Expand All @@ -28,3 +28,4 @@ class ResourceMonitorThread: public thread
};

};

0 comments on commit 6ebc14d

Please sign in to comment.