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:
Diffstat (limited to 'source/blender/compositor/intern/COM_SingleThreadedNodeOperation.h')
-rw-r--r--source/blender/compositor/intern/COM_SingleThreadedNodeOperation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/intern/COM_SingleThreadedNodeOperation.h b/source/blender/compositor/intern/COM_SingleThreadedNodeOperation.h
index b1bf28c9c07..c6db5381f48 100644
--- a/source/blender/compositor/intern/COM_SingleThreadedNodeOperation.h
+++ b/source/blender/compositor/intern/COM_SingleThreadedNodeOperation.h
@@ -26,11 +26,11 @@
class SingleThreadedNodeOperation : public NodeOperation {
private:
- MemoryBuffer *cachedInstance;
+ MemoryBuffer *m_cachedInstance;
protected:
inline bool isCached() {
- return cachedInstance != NULL;
+ return this->m_cachedInstance != NULL;
}
public: