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

View File

@@ -28,6 +28,7 @@
#include <openspace/properties/propertyowner.h>
#include <openspace/properties/scalar/boolproperty.h>
#include <openspace/rendering/dashboarditem.h>
#include <ghoul/glm.h>
#include <memory>
#include <vector>
@@ -36,12 +37,10 @@ namespace openspace {
namespace scripting { struct LuaLibrary; }
class DashboardItem;
class Dashboard : public properties::PropertyOwner {
public:
Dashboard();
~Dashboard();
~Dashboard() = default;
void render(glm::vec2& penPosition);

View File

@@ -68,6 +68,7 @@ public:
void tickItem();
enum class Phase {
PreStart,
Construction,
Synchronization,
Initialization
@@ -97,7 +98,7 @@ private:
bool _showNodeNames;
bool _showProgressbar;
Phase _phase;
Phase _phase = Phase::PreStart;
std::atomic_int _iProgress = 0;
std::atomic_int _nItems = 0;