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:
authorJeroen Bakker <jeroen@blender.org>2021-03-05 18:08:11 +0300
committerJeroen Bakker <jeroen@blender.org>2021-03-05 18:08:11 +0300
commitd5c727c6ea5f52201ba92a2a7a4d92f1cb7a4138 (patch)
tree51ed0c330bd144a10e59b8383bec9642747a4d49 /source/blender/compositor
parentffd5b0d91e26a1b2018d503a42f309186f39fcdf (diff)
Fix windows compilation.
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/intern/COM_Device.h2
-rw-r--r--source/blender/compositor/intern/COM_WorkPackage.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/source/blender/compositor/intern/COM_Device.h b/source/blender/compositor/intern/COM_Device.h
index bb95f1e953c..0b0f0f5c1c6 100644
--- a/source/blender/compositor/intern/COM_Device.h
+++ b/source/blender/compositor/intern/COM_Device.h
@@ -55,7 +55,7 @@ class Device {
* \brief execute a WorkPackage
* \param work: the WorkPackage to execute
*/
- virtual void execute(WorkPackage *work) = 0;
+ virtual void execute(struct WorkPackage *work) = 0;
#ifdef WITH_CXX_GUARDEDALLOC
MEM_CXX_CLASS_ALLOC_FUNCS("COM:Device")
diff --git a/source/blender/compositor/intern/COM_WorkPackage.h b/source/blender/compositor/intern/COM_WorkPackage.h
index 81616e123b2..db5eb3d3072 100644
--- a/source/blender/compositor/intern/COM_WorkPackage.h
+++ b/source/blender/compositor/intern/COM_WorkPackage.h
@@ -16,8 +16,6 @@
* Copyright 2011, Blender Foundation.
*/
-class WorkPackage;
-
#pragma once
class ExecutionGroup;