From fa569441710f69edf70bb30ae1bf79b6641404f0 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Mon, 16 Dec 2013 23:59:20 +0100 Subject: [PATCH] Fixed GTX_io test --- readme.txt | 1 + test/gtx/gtx_io.cpp | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/readme.txt b/readme.txt index 6e100f80..cc4069d9 100644 --- a/readme.txt +++ b/readme.txt @@ -69,6 +69,7 @@ GLM 0.9.5.0: 2013-XX-XX - Added C++11 initializer lists - Fixed umulExtended and imulExtended implementations for vector types (#76) - Fixed CUDA coverage for GTC extensions +- Added GTX_io extension ================================================================================ GLM 0.9.4.6: 2013-09-20 diff --git a/test/gtx/gtx_io.cpp b/test/gtx/gtx_io.cpp index d4e2aabc..86792bc9 100644 --- a/test/gtx/gtx_io.cpp +++ b/test/gtx/gtx_io.cpp @@ -125,16 +125,16 @@ int test_io_mat(OS& os) int main() { int Error(0); - - Error += test_io_vec (std::cout); - Error += test_io_vec (std::wcout); - Error += test_io_vec(std::cout); - Error += test_io_vec(std::wcout); - Error += test_io_vec (std::cout); - Error += test_io_vec (std::wcout); - Error += test_io_mat (std::cout); - Error += test_io_mat (std::wcout); - + Error += test_io_vec(std::cout); + Error += test_io_vec(std::wcout); + Error += test_io_vec(std::cout); + Error += test_io_vec(std::wcout); + Error += test_io_vec(std::cout); + Error += test_io_vec(std::wcout); + + Error += test_io_mat(std::cout); + Error += test_io_mat(std::wcout); + return Error; }