From 4b6a98fe16613dbd36b31e723597412669ac1f7c Mon Sep 17 00:00:00 2001 From: David Neto Date: Wed, 2 Dec 2015 11:55:35 -0500 Subject: [PATCH] Fix namespace on PrintTo --- test/UnitSPIRV.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/UnitSPIRV.cpp b/test/UnitSPIRV.cpp index 690f476..46deaf4 100644 --- a/test/UnitSPIRV.cpp +++ b/test/UnitSPIRV.cpp @@ -46,7 +46,7 @@ TEST(MakeVector, Samples) { TEST(WordVectorPrintTo, PreservesFlagsAndFill) { std::stringstream s; s << std::setw(4) << std::oct << std::setfill('x') << 8 << " "; - PrintTo(spvtest::WordVector({10, 16}), &s); + spvtest::PrintTo(spvtest::WordVector({10, 16}), &s); // The octal setting and fill character should be preserved // from before the PrintTo. // Width is reset after each emission of a regular scalar type. -- 2.7.4