diff options
| author | Aaron Gokaslan <aaronGokaslan@gmail.com> | 2022-08-25 12:20:13 -0400 |
|---|---|---|
| committer | Aaron Gokaslan <aaronGokaslan@gmail.com> | 2022-08-25 12:20:13 -0400 |
| commit | e93fa6699a0ab029ca09e4ea04e5b281187086b7 (patch) | |
| tree | e87d8c0312e968f83a8f8849037698ac56e50738 /code/PostProcessing/ComputeUVMappingProcess.cpp | |
| parent | 6fa21dcc6ecca14ee9c09ef40cc3b3f02640d2bf (diff) | |
Manually fix up 100 more instances where it should be defaulted
Diffstat (limited to 'code/PostProcessing/ComputeUVMappingProcess.cpp')
| -rw-r--r-- | code/PostProcessing/ComputeUVMappingProcess.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/code/PostProcessing/ComputeUVMappingProcess.cpp b/code/PostProcessing/ComputeUVMappingProcess.cpp index ec8783041..237409f02 100644 --- a/code/PostProcessing/ComputeUVMappingProcess.cpp +++ b/code/PostProcessing/ComputeUVMappingProcess.cpp @@ -59,17 +59,11 @@ namespace { // ------------------------------------------------------------------------------------------------ // Constructor to be privately used by Importer -ComputeUVMappingProcess::ComputeUVMappingProcess() -{ - // nothing to do here -} +ComputeUVMappingProcess::ComputeUVMappingProcess() = default; // ------------------------------------------------------------------------------------------------ // Destructor, private as well -ComputeUVMappingProcess::~ComputeUVMappingProcess() -{ - // nothing to do here -} +ComputeUVMappingProcess::~ComputeUVMappingProcess() = default; // ------------------------------------------------------------------------------------------------ // Returns whether the processing step is present in the given flag field. |
