Merge lp:~hacker-emmanuel/stellarium/bug_1178257 into lp:stellarium

Proposed by Emmanuel
Status: Merged
Approved by: Alexander Wolf
Approved revision: 5790
Merged at revision: 6025
Proposed branch: lp:~hacker-emmanuel/stellarium/bug_1178257
Merge into: lp:stellarium
Diff against target: 12 lines (+1/-1)
1 file modified
src/core/VecMath.hpp (+1/-1)
To merge this branch: bzr merge lp:~hacker-emmanuel/stellarium/bug_1178257
Reviewer Review Type Date Requested Status
Stellarium Pending
Review via email: mp+163147@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/core/VecMath.hpp'
2--- src/core/VecMath.hpp 2012-09-13 16:51:14 +0000
3+++ src/core/VecMath.hpp 2013-05-09 13:31:28 +0000
4@@ -695,7 +695,7 @@
5
6 template<class T> void Vector4<T>::operator-=(const Vector4<T>& a)
7 {
8- v[0] -= a.v[0]; v[1] -= a.v[1]; v[2] -= a.v[2]; v[3] -= a/v[3];
9+ v[0] -= a.v[0]; v[1] -= a.v[1]; v[2] -= a.v[2]; v[3] -= a.v[3];
10 }
11
12 template<class T> void Vector4<T>::operator*=(T s)