diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-07-27 16:03:55 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-07-27 17:33:18 -0400 |
| commit | 86000fc6b4531123adb2cffa46fffae5ebfe425d (patch) | |
| tree | a6cbafa1eede4362a6675c984ecbbb844cedd0d4 /Source/Core/VideoBackends/Null/Render.cpp | |
| parent | bdcc5853d51d82301a8a05cee721c395fabe918b (diff) | |
VideoBackends/Null: Remove unnecessary constructors and destructors
Removes constructors and destructors that don't actually provide any
behavior (i.e. doesn't constain generated code related to non-trivial
members in a cpp file, etc).
Lessens the amount of code present.
Diffstat (limited to 'Source/Core/VideoBackends/Null/Render.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Null/Render.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/Core/VideoBackends/Null/Render.cpp b/Source/Core/VideoBackends/Null/Render.cpp index cfa35c7315..7e8719baf5 100644 --- a/Source/Core/VideoBackends/Null/Render.cpp +++ b/Source/Core/VideoBackends/Null/Render.cpp @@ -44,7 +44,6 @@ class NullShader final : public AbstractShader { public: explicit NullShader(ShaderStage stage) : AbstractShader(stage) {} - ~NullShader() = default; }; std::unique_ptr<AbstractShader> @@ -61,9 +60,6 @@ std::unique_ptr<AbstractShader> Renderer::CreateShaderFromBinary(ShaderStage sta class NullPipeline final : public AbstractPipeline { -public: - NullPipeline() = default; - ~NullPipeline() override = default; }; std::unique_ptr<AbstractPipeline> Renderer::CreatePipeline(const AbstractPipelineConfig& config, |
