Address clang tidy complaints

Update Ghoul repository
Update SGCT repository
This commit is contained in:
Alexander Bock
2018-11-30 15:34:09 -05:00
parent 752750bee8
commit c7a96a6b59
121 changed files with 626 additions and 670 deletions
+2 -2
View File
@@ -51,7 +51,7 @@ namespace {
namespace openspace {
WebBrowserModule::WebBrowserModule() : OpenSpaceModule(WebBrowserModule::Name) {
global::callback::deinitialize.push_back([this]() { deinitialize(); });
global::callback::deinitialize.emplace_back([this]() { deinitialize(); });
}
void WebBrowserModule::internalDeinitialize() {
@@ -100,7 +100,7 @@ void WebBrowserModule::internalInitialize(const ghoul::Dictionary& dictionary) {
_cefHost = std::make_unique<CefHost>(std::move(helperLocation));
LDEBUG("Starting CEF... done!");
global::callback::preSync.push_back([this]() {
global::callback::preSync.emplace_back([this]() {
if (_cefHost && !_browsers.empty()) {
_cefHost->doMessageLoopWork();
}