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:
authorCampbell Barton <ideasman42@gmail.com>2013-03-14 11:25:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-14 11:25:54 +0400
commit6a51379bf7a6c0aaa9fcb1c4b60a33e903e75931 (patch)
treeecdfeae344ff9fb467f3d1d5ed587c30f0ae3386 /intern/opencolorio
parent21dc93d275be257d9777d772a5325b6d704b1cb2 (diff)
tweaks to clang so blender can build with -Werror
Diffstat (limited to 'intern/opencolorio')
-rw-r--r--intern/opencolorio/ocio_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/opencolorio/ocio_impl.h b/intern/opencolorio/ocio_impl.h
index 64cf5ec3322..b6bbc912e5b 100644
--- a/intern/opencolorio/ocio_impl.h
+++ b/intern/opencolorio/ocio_impl.h
@@ -30,7 +30,7 @@
class IOCIOImpl {
public:
- virtual ~IOCIOImpl() {};
+ virtual ~IOCIOImpl() {}
virtual OCIO_ConstConfigRcPtr *getCurrentConfig(void) = 0;
virtual void setCurrentConfig(const OCIO_ConstConfigRcPtr *config) = 0;
@@ -99,7 +99,7 @@ public:
class FallbackImpl : public IOCIOImpl {
public:
- FallbackImpl() {};
+ FallbackImpl() {}
OCIO_ConstConfigRcPtr *getCurrentConfig(void);
void setCurrentConfig(const OCIO_ConstConfigRcPtr *config);