mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 11:33:44 +02:00
Clean and fix Wreorder
This commit is contained in:
parent
0f6d9a4db6
commit
39269f12ec
3 changed files with 2 additions and 3 deletions
|
@ -101,7 +101,6 @@ class RenderDeferredTask : public render::Task {
|
|||
public:
|
||||
|
||||
RenderDeferredTask();
|
||||
~RenderDeferredTask() = default;
|
||||
|
||||
int _drawDebugDeferredBufferIndex = -1;
|
||||
int _drawStatusJobIndex = -1;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
//
|
||||
// Engine.h
|
||||
// Context.h
|
||||
// render/src/render
|
||||
//
|
||||
// Created by Zach Pomerantz on 1/6/2015.
|
||||
|
|
|
@ -170,7 +170,7 @@ public:
|
|||
};
|
||||
|
||||
Job(ConceptPointer concept) : _concept(concept) {}
|
||||
Job(std::string name, ConceptPointer concept) : _name(name), _concept(concept) {}
|
||||
Job(std::string name, ConceptPointer concept) : _concept(concept), _name(name) {}
|
||||
|
||||
bool isEnabled() const { return _concept->isEnabled(); }
|
||||
void setEnabled(bool isEnabled) { _concept->setEnabled(isEnabled); }
|
||||
|
|
Loading…
Reference in a new issue