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
=== modified file 'src/core/VecMath.hpp'
--- src/core/VecMath.hpp 2012-09-13 16:51:14 +0000
+++ src/core/VecMath.hpp 2013-05-09 13:31:28 +0000
@@ -695,7 +695,7 @@
695695
696template<class T> void Vector4<T>::operator-=(const Vector4<T>& a)696template<class T> void Vector4<T>::operator-=(const Vector4<T>& a)
697{697{
698 v[0] -= a.v[0]; v[1] -= a.v[1]; v[2] -= a.v[2]; v[3] -= a/v[3];698 v[0] -= a.v[0]; v[1] -= a.v[1]; v[2] -= a.v[2]; v[3] -= a.v[3];
699}699}
700700
701template<class T> void Vector4<T>::operator*=(T s)701template<class T> void Vector4<T>::operator*=(T s)