Before changing to polymorphic clone

This commit is contained in:
Klaus Basan
2013-04-27 15:46:22 +02:00
parent c5b9c48cd6
commit b257862aac
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
/* Copyright (C) 2013 VATSIM Community / authors
/* Copyright (C) 2013 VATSIM Community / contributors
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */

View File

@@ -109,7 +109,7 @@ public:
*/
ImplMatrix operator *(double factor) const
{
ImplMatrix m(0);
ImplMatrix m;
m += (*this);
m *= factor;
return m;