From 663f12559b7317764ab35ba9d902c5fd8d375c76 Mon Sep 17 00:00:00 2001 From: Christian Beer Date: Thu, 1 Sep 2016 18:20:08 +0200 Subject: [PATCH] Client/Manager: remove superfluous ';' Those extra ';' produce warnings when using the "-std=gnu++11 -pedantic" flags because they are not conform with the C++11 standard. --- client/cs_trickle.cpp | 2 +- clientgui/ViewResources.cpp | 2 +- clientgui/common/wxPieCtrl.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/client/cs_trickle.cpp b/client/cs_trickle.cpp index 338f07027c..f2a22ab89e 100644 --- a/client/cs_trickle.cpp +++ b/client/cs_trickle.cpp @@ -326,4 +326,4 @@ void TRICKLE_UP_OP::handle_reply(int http_op_retval) { free(req_buf); req_buf = 0; } -}; +} diff --git a/clientgui/ViewResources.cpp b/clientgui/ViewResources.cpp index 4524232548..747ce348a4 100644 --- a/clientgui/ViewResources.cpp +++ b/clientgui/ViewResources.cpp @@ -31,7 +31,7 @@ #include #include "res/usage.xpm" -WX_DEFINE_OBJARRAY(wxArrayColour); +WX_DEFINE_OBJARRAY(wxArrayColour) IMPLEMENT_DYNAMIC_CLASS(CViewResources, CBOINCBaseView) diff --git a/clientgui/common/wxPieCtrl.cpp b/clientgui/common/wxPieCtrl.cpp index f604fa8a20..46d9bad821 100644 --- a/clientgui/common/wxPieCtrl.cpp +++ b/clientgui/common/wxPieCtrl.cpp @@ -15,7 +15,7 @@ using namespace std; -WX_DEFINE_OBJARRAY(wxPieSeries); +WX_DEFINE_OBJARRAY(wxPieSeries) /* ####### wxPiePart */ wxPiePart::wxPiePart()