From 3152ed327768769363168ec24fe424f4006f4624 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 16 Dec 2019 08:19:44 +1100 Subject: [PATCH] mutex: silence an unused variable warning in a test --- test/thread/mutex.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/thread/mutex.cpp b/test/thread/mutex.cpp index 288a0081..cace788f 100644 --- a/test/thread/mutex.cpp +++ b/test/thread/mutex.cpp @@ -7,6 +7,8 @@ int main () cruft::thread::mutex a; cruft::thread::mutex b; + (void)a; + (void)b; return tap.status (); } \ No newline at end of file