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

@@ -45,14 +45,14 @@ struct PerformanceLayout {
float updateRotation[NumberValues];
float updateScaling[NumberValues];
};
SceneGraphPerformanceLayout sceneGraphEntries[MaxValues];
SceneGraphPerformanceLayout sceneGraphEntries[MaxValues] = {};
int16_t nScaleGraphEntries = 0;
struct FunctionPerformanceLayout {
char name[LengthName];
float time[NumberValues];
};
FunctionPerformanceLayout functionEntries[MaxValues];
FunctionPerformanceLayout functionEntries[MaxValues] = {};
int16_t nFunctionEntries = 0;
};

View File

@@ -42,8 +42,6 @@ public:
static void CreateGlobalSharedMemory();
static void DestroyGlobalSharedMemory();
~PerformanceManager();
void setEnabled(bool enabled);
bool isEnabled() const;