summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-11 14:13:06 +0200
committerNoel Grandin <noel@peralex.com>2016-04-11 15:12:10 +0200
commit50d02ad99f73aafbf25350c7275920af53d20ae1 (patch)
tree06af6f646c2d3e441535515455d8dfdf92328317 /tools
parent28c96a09105f87d76441234a6e77f2ac1e1473df (diff)
clang-tidy performance-unnecessary-value-param in tools
Change-Id: I57b2fd191dfd937f3327f148b27767b364acf667
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/b3dtrans.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/generic/b3dtrans.cxx b/tools/source/generic/b3dtrans.cxx
index 34b205a6312d..f4a0920fe93b 100644
--- a/tools/source/generic/b3dtrans.cxx
+++ b/tools/source/generic/b3dtrans.cxx
@@ -33,7 +33,7 @@ B3dTransformationSet::~B3dTransformationSet()
{
}
-void B3dTransformationSet::Orientation(basegfx::B3DHomMatrix& rTarget, basegfx::B3DPoint aVRP, basegfx::B3DVector aVPN, basegfx::B3DVector aVUP)
+void B3dTransformationSet::Orientation(basegfx::B3DHomMatrix& rTarget, const basegfx::B3DPoint& aVRP, basegfx::B3DVector aVPN, basegfx::B3DVector aVUP)
{
rTarget.translate( -aVRP.getX(), -aVRP.getY(), -aVRP.getZ());
aVUP.normalize();