From e4b8232571ccd1b28dce51b5ab46438ff544e922 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Thu, 1 Aug 2002 16:34:12 +0000 Subject: [PATCH] Test the indeterminate function as a function [SVN r338] --- test/tribool_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tribool_test.cpp b/test/tribool_test.cpp index 85d6b68..f14a8c5 100644 --- a/test/tribool_test.cpp +++ b/test/tribool_test.cpp @@ -75,7 +75,7 @@ int main() assert(!(x && z)); assert((y && z) == indeterminate); assert((z && z) == indeterminate); - assert((z || z) == indeterminate); + assert(indeterminate(z || z)); assert(x || z == indeterminate); assert(y || z);