aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/test/v3math_tut.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/test/v3math_tut.cpp')
-rw-r--r--linden/indra/test/v3math_tut.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/test/v3math_tut.cpp b/linden/indra/test/v3math_tut.cpp
index 30a7b7a..9989a8a 100644
--- a/linden/indra/test/v3math_tut.cpp
+++ b/linden/indra/test/v3math_tut.cpp
@@ -475,7 +475,7 @@ namespace tut
475 void v3math_object::test<28>() 475 void v3math_object::test<28>()
476 { 476 {
477 F32 x1 =1.23f, y1 = 2.f,z1 = 4.f; 477 F32 x1 =1.23f, y1 = 2.f,z1 = 4.f;
478 char buf[] = "1.23 2. 4"; 478 std::string buf("1.23 2. 4");
479 LLVector3 vec3, vec3a(x1,y1,z1); 479 LLVector3 vec3, vec3a(x1,y1,z1);
480 LLVector3::parseVector3(buf, &vec3); 480 LLVector3::parseVector3(buf, &vec3);
481 ensure_equals("1:parseVector3 failed", vec3, vec3a); 481 ensure_equals("1:parseVector3 failed", vec3, vec3a);