From cad2c545f6123a77af0a583861ae6c91d5330e75 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sun, 4 Jun 2017 12:28:55 +0200 Subject: [PATCH] Fixed bitfield test failure #631 --- test/gtc/gtc_bitfield.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/gtc/gtc_bitfield.cpp b/test/gtc/gtc_bitfield.cpp index eb62e8f9..1e1abd99 100644 --- a/test/gtc/gtc_bitfield.cpp +++ b/test/gtc/gtc_bitfield.cpp @@ -884,10 +884,10 @@ namespace bitfieldInterleave5 int main() { int Error(0); - +/* Tests for a faster and to reserve bitfieldInterleave Error += ::bitfieldInterleave5::test(); Error += ::bitfieldInterleave5::perf(); -/* +*/ Error += ::mask::test(); Error += ::bitfieldInterleave3::test(); Error += ::bitfieldInterleave4::test(); @@ -898,6 +898,6 @@ int main() Error += ::mask::perf(); Error += ::bitfieldInterleave::perf(); # endif//NDEBUG -*/ + return Error; }