Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-01-26 17:23:17 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-01-26 17:52:05 +0300
commitdde3ecc1a88f1838a77917d92341a0078b55c47e (patch)
tree1a5b88ea9dc5cd2898bd5c5f4756b222154e4434 /source/blender/compositor/operations/COM_SocketProxyOperation.h
parent76ab0381d1e5f8df6b23803b75b2013933484bcd (diff)
Cleanup: compiler warnings
If one method is marked as override, clang warns if others are not.
Diffstat (limited to 'source/blender/compositor/operations/COM_SocketProxyOperation.h')
-rw-r--r--source/blender/compositor/operations/COM_SocketProxyOperation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_SocketProxyOperation.h b/source/blender/compositor/operations/COM_SocketProxyOperation.h
index 435083f5008..712347a8ea2 100644
--- a/source/blender/compositor/operations/COM_SocketProxyOperation.h
+++ b/source/blender/compositor/operations/COM_SocketProxyOperation.h
@@ -24,11 +24,11 @@ class SocketProxyOperation : public NodeOperation {
public:
SocketProxyOperation(DataType type, bool use_conversion);
- bool isProxyOperation() const
+ bool isProxyOperation() const override
{
return true;
}
- bool useDatatypeConversion() const
+ bool useDatatypeConversion() const override
{
return m_use_conversion;
}