diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-11 14:13:06 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-11 15:12:10 +0200 |
commit | 50d02ad99f73aafbf25350c7275920af53d20ae1 (patch) | |
tree | 06af6f646c2d3e441535515455d8dfdf92328317 /tools | |
parent | 28c96a09105f87d76441234a6e77f2ac1e1473df (diff) |
clang-tidy performance-unnecessary-value-param in tools
Change-Id: I57b2fd191dfd937f3327f148b27767b364acf667
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/generic/b3dtrans.cxx | 2 |
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(); |