Removing more CppCheck warnings

This commit is contained in:
Alexander Bock
2016-07-28 20:31:53 +02:00
parent 4068ec747b
commit 0c3b2c55d9
34 changed files with 214 additions and 239 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ PerformanceManager::PerformanceManager()
void* ptr = _performanceMemory->memory();
// Using the placement-new to create a PerformanceLayout in the shared memory
PerformanceLayout* layout = new (ptr) PerformanceLayout;
new (ptr) PerformanceLayout;
}
PerformanceManager::~PerformanceManager() {