From 2ec91511703ebd05a403047f5a411fcbc197c9fa Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 19 Jun 2015 08:10:35 -0400 Subject: [PATCH] fix compiler const-cast warning --- libs/canvas/canvas/wave_view.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/canvas/canvas/wave_view.h b/libs/canvas/canvas/wave_view.h index 55d82022af..6b18f399d4 100644 --- a/libs/canvas/canvas/wave_view.h +++ b/libs/canvas/canvas/wave_view.h @@ -56,7 +56,7 @@ struct LIBCANVAS_API WaveViewThreadRequest WaveViewThreadRequest () : stop (0) {} - bool should_stop () const { return (bool) g_atomic_int_get (&stop); } + bool should_stop () const { return (bool) g_atomic_int_get (const_cast(&stop)); } void cancel() { g_atomic_int_set (&stop, 1); } RequestType type;