From 2c51d4cfa65a903a5221ac8b2ca44adaa941ef17 Mon Sep 17 00:00:00 2001
From: marshmellow42 <marshmellowrf@gmail.com>
Date: Wed, 7 Jun 2017 15:42:28 -0400
Subject: [PATCH] remove warning about non-static init...

warning was: non-static data member initializers only available with
-std=c++11 or -std=gnu++11
---
 client/proxguiqt.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/client/proxguiqt.h b/client/proxguiqt.h
index 73f9286c..8a3b8cfc 100644
--- a/client/proxguiqt.h
+++ b/client/proxguiqt.h
@@ -128,7 +128,7 @@ public:
 	void run();
 private:
 	char *script_cmds_file = NULL;
-	bool usb_present = false;
+	bool usb_present;
 };
 
 #endif // PROXGUI_QT
-- 
2.39.5