diff options
| author | assiduous <assiduous@diligentgraphics.com> | 2020-01-14 02:40:24 +0000 |
|---|---|---|
| committer | assiduous <assiduous@diligentgraphics.com> | 2020-01-14 02:40:24 +0000 |
| commit | e043bed12388268495b5cbf6bbad8836d289ec7a (patch) | |
| tree | 54531fbbf59e046a61a06fb5d8b46133e9316fa6 /Graphics/GraphicsTools | |
| parent | Updated release history (diff) | |
| download | DiligentCore-e043bed12388268495b5cbf6bbad8836d289ec7a.tar.gz DiligentCore-e043bed12388268495b5cbf6bbad8836d289ec7a.zip | |
Fixed a couple of clang warnings
Diffstat (limited to 'Graphics/GraphicsTools')
| -rw-r--r-- | Graphics/GraphicsTools/interface/DurationQueryHelper.h | 2 | ||||
| -rw-r--r-- | Graphics/GraphicsTools/interface/ScopedQueryHelper.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Graphics/GraphicsTools/interface/DurationQueryHelper.h b/Graphics/GraphicsTools/interface/DurationQueryHelper.h index 38c2325d..b073a02a 100644 --- a/Graphics/GraphicsTools/interface/DurationQueryHelper.h +++ b/Graphics/GraphicsTools/interface/DurationQueryHelper.h @@ -51,7 +51,7 @@ public: DurationQueryHelper (const DurationQueryHelper&) = delete; DurationQueryHelper& operator=(const DurationQueryHelper&) = delete; DurationQueryHelper (DurationQueryHelper&&) = default; - DurationQueryHelper& operator=(DurationQueryHelper&&) = default; + DurationQueryHelper& operator=(DurationQueryHelper&&) = delete; // clang-format on diff --git a/Graphics/GraphicsTools/interface/ScopedQueryHelper.h b/Graphics/GraphicsTools/interface/ScopedQueryHelper.h index 6dbf9553..1a089e0a 100644 --- a/Graphics/GraphicsTools/interface/ScopedQueryHelper.h +++ b/Graphics/GraphicsTools/interface/ScopedQueryHelper.h @@ -52,7 +52,7 @@ public: ScopedQueryHelper (const ScopedQueryHelper&) = delete; ScopedQueryHelper& operator=(const ScopedQueryHelper&) = delete; ScopedQueryHelper (ScopedQueryHelper&&) = default; - ScopedQueryHelper& operator=(ScopedQueryHelper&&) = default; + ScopedQueryHelper& operator=(ScopedQueryHelper&&) = delete; // clang-format on |
