Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/intern
diff options
context:
space:
mode:
authorKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-07-22 04:15:50 +0400
committerKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-07-22 04:15:50 +0400
commit6ce57a706f08d431ab9f8586e106ae545ba861ac (patch)
tree54a419921480ab5619b72cfe927e28d9d068e0e7 /intern
parent9b857ffb87f76ea26094111163dbb7dfc397259c (diff)
GCC 3.4 compile fixes from bug #1277
Diffstat (limited to 'intern')
-rw-r--r--intern/iksolver/intern/TNT/vec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/iksolver/intern/TNT/vec.h b/intern/iksolver/intern/TNT/vec.h
index 2aff4d59628..d4f7c2f4021 100644
--- a/intern/iksolver/intern/TNT/vec.h
+++ b/intern/iksolver/intern/TNT/vec.h
@@ -296,11 +296,11 @@ std::ostream& operator<<(std::ostream &s, const Vector<T> &A)
{
Subscript N=A.dim();
- s << N << endl;
+ s << N << std::endl;
for (Subscript i=0; i<N; i++)
- s << A[i] << " " << endl;
- s << endl;
+ s << A[i] << " " << std::endl;
+ s << std::endl;
return s;
}