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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-09-07 23:41:46 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-09-07 23:41:46 +0400
commitf00349293fab23f29ebdf1c4b33bd298fa17284a (patch)
tree839cf61b94a433d60cca798c039133f7c8a93597 /intern/opencolorio/ocio_impl.cc
parente492fad1308d5072a34abb3a90790a1106eea32b (diff)
Code cleanup: us commented out arg names rather than leaving them if unused
Diffstat (limited to 'intern/opencolorio/ocio_impl.cc')
-rw-r--r--intern/opencolorio/ocio_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/opencolorio/ocio_impl.cc b/intern/opencolorio/ocio_impl.cc
index 9f490ea05ac..0402c4ee5cf 100644
--- a/intern/opencolorio/ocio_impl.cc
+++ b/intern/opencolorio/ocio_impl.cc
@@ -547,7 +547,7 @@ void OCIOImpl::matrixTransformRelease(OCIO_MatrixTransformRcPtr *mt)
MEM_DELETE((MatrixTransformRcPtr *) mt, MatrixTransformRcPtr);
}
-void OCIOImpl::matrixTransformScale(float * m44, float * offset4, const float *scale4f)
+void OCIOImpl::matrixTransformScale(float *m44, float *offset4, const float *scale4f)
{
MatrixTransform::Scale(m44, offset4, scale4f);
}