-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backport/v5.13 #1411
Backport/v5.13 #1411
Conversation
…mpty-file-issue (#1408) FineFTP 1.4.2 fixes a bug that caused empty files to be not downloadable.
…indows sign-installer job (#1409) - Updated steps to non-deprecated versions - Moved sign-installer job for windows to its own job, so we don't need to re-run everything if that one fails - Increased timeout for sign-installer job from 100s to 300s
…1406) - QWT can now be built static - static is the default option - GH Actions for Ubuntu now build QWT from the submodule - This fixes issues when building with Qt6 on Linux
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clang-tidy made some suggestions
@@ -534,10 +534,10 @@ extern "C" | |||
///////////////////////////////////////////////////////// | |||
// Publisher | |||
///////////////////////////////////////////////////////// | |||
static std::recursive_mutex g_pub_callback_mtx; | |||
static std::recursive_mutex g_pub_event_callback_mtx; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'g_pub_event_callback_mtx' is non-const and globally accessible, consider making it const [cppcoreguidelines-avoid-non-const-global-variables]
static std::recursive_mutex g_pub_event_callback_mtx;
^
@@ -534,10 +534,10 @@ extern "C" | |||
///////////////////////////////////////////////////////// | |||
// Publisher | |||
///////////////////////////////////////////////////////// | |||
static std::recursive_mutex g_pub_callback_mtx; | |||
static std::recursive_mutex g_pub_event_callback_mtx; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'g_pub_event_callback_mtx' declared 'static', move to anonymous namespace instead [misc-use-anonymous-namespace]
static std::recursive_mutex g_pub_event_callback_mtx;
^
@@ -747,10 +747,10 @@ extern "C" | |||
///////////////////////////////////////////////////////// | |||
// Subscriber | |||
///////////////////////////////////////////////////////// | |||
static std::recursive_mutex g_sub_callback_mtx; | |||
static std::recursive_mutex g_sub_receive_callback_mtx; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'g_sub_receive_callback_mtx' is non-const and globally accessible, consider making it const [cppcoreguidelines-avoid-non-const-global-variables]
static std::recursive_mutex g_sub_receive_callback_mtx;
^
@@ -747,10 +747,10 @@ extern "C" | |||
///////////////////////////////////////////////////////// | |||
// Subscriber | |||
///////////////////////////////////////////////////////// | |||
static std::recursive_mutex g_sub_callback_mtx; | |||
static std::recursive_mutex g_sub_receive_callback_mtx; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'g_sub_receive_callback_mtx' declared 'static', move to anonymous namespace instead [misc-use-anonymous-namespace]
static std::recursive_mutex g_sub_receive_callback_mtx;
^
@@ -760,9 +760,10 @@ static void g_sub_receive_callback(const char* topic_name_, const struct eCAL::S | |||
callback_(topic_name_, &data, par_); | |||
} | |||
|
|||
static std::recursive_mutex g_sub_event_callback_mtx; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'g_sub_event_callback_mtx' is non-const and globally accessible, consider making it const [cppcoreguidelines-avoid-non-const-global-variables]
static std::recursive_mutex g_sub_event_callback_mtx;
^
@@ -1195,10 +1196,10 @@ extern "C" | |||
///////////////////////////////////////////////////////// | |||
extern "C" | |||
{ | |||
static std::recursive_mutex g_request_callback_mtx; | |||
static std::recursive_mutex g_method_callback_mtx; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'g_method_callback_mtx' declared 'static', move to anonymous namespace instead [misc-use-anonymous-namespace]
static std::recursive_mutex g_method_callback_mtx;
^
@@ -1209,9 +1210,10 @@ extern "C" | |||
return ret_state; | |||
} | |||
|
|||
static std::recursive_mutex g_server_event_callback_mtx; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'g_server_event_callback_mtx' is non-const and globally accessible, consider making it const [cppcoreguidelines-avoid-non-const-global-variables]
static std::recursive_mutex g_server_event_callback_mtx;
^
@@ -1209,9 +1210,10 @@ extern "C" | |||
return ret_state; | |||
} | |||
|
|||
static std::recursive_mutex g_server_event_callback_mtx; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'g_server_event_callback_mtx' declared 'static', move to anonymous namespace instead [misc-use-anonymous-namespace]
static std::recursive_mutex g_server_event_callback_mtx;
^
@@ -1315,9 +1317,10 @@ extern "C" | |||
callback_(&service_response, par_); | |||
} | |||
|
|||
static std::recursive_mutex g_client_event_callback_mtx; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'g_client_event_callback_mtx' is non-const and globally accessible, consider making it const [cppcoreguidelines-avoid-non-const-global-variables]
static std::recursive_mutex g_client_event_callback_mtx;
^
@@ -1315,9 +1317,10 @@ extern "C" | |||
callback_(&service_response, par_); | |||
} | |||
|
|||
static std::recursive_mutex g_client_event_callback_mtx; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'g_client_event_callback_mtx' declared 'static', move to anonymous namespace instead [misc-use-anonymous-namespace]
static std::recursive_mutex g_client_event_callback_mtx;
^
Rebase merge!!!