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
@@ -36,7 +36,7 @@ namespace {
namespace openspace {
CefHost::CefHost(std::string helperLocation) {
CefHost::CefHost(const std::string& helperLocation) {
LDEBUG("Initializing CEF...");
CefSettings settings;
@@ -50,7 +50,7 @@ CefHost::CefHost(std::string helperLocation) {
CefRefPtr<WebBrowserApp> app(new WebBrowserApp);
CefMainArgs args;
CefInitialize(args, settings, app.get(), NULL);
CefInitialize(args, settings, app.get(), nullptr);
LDEBUG("Initializing CEF... done!");
}