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:
authorAntony Riakiotakis <kalast@gmail.com>2012-05-17 17:15:58 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-05-17 17:15:58 +0400
commit9b42b996493d0202247fc245c873e20d13ce92be (patch)
tree64be63a495ac3ea4cf240d8c718b86f905b0fdc5 /source/blender/compositor
parent463898014f86d79ed096e10fa178d56641375456 (diff)
MinGW64 and possibly gcc 4.7 doesn't like interface as identifier.
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/operations/COM_LensGhostOperation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/compositor/operations/COM_LensGhostOperation.cpp b/source/blender/compositor/operations/COM_LensGhostOperation.cpp
index 37f0c776d9f..6236708c9e1 100644
--- a/source/blender/compositor/operations/COM_LensGhostOperation.cpp
+++ b/source/blender/compositor/operations/COM_LensGhostOperation.cpp
@@ -229,8 +229,8 @@ public:
}
- void addInterface(LensInterface* interface) {
- this->interfaces.push_back(interface);
+ void addInterface(LensInterface* pinterface) {
+ this->interfaces.push_back(pinterface);
this->lensIndex = this->interfaces.size()-1;
}