From b06b856934fce3ec73c85b52722ca72bbe1ee4f8 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 29 Nov 2020 12:43:45 -0700 Subject: [PATCH] tweak test code to check int62_t::min and flag bit --- libs/temporal/test2.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/temporal/test2.cc b/libs/temporal/test2.cc index f586f31972..b026b0792e 100644 --- a/libs/temporal/test2.cc +++ b/libs/temporal/test2.cc @@ -152,7 +152,7 @@ atomic_masks () cerr << "should be -1: " << x.val() << endl; x = int62_t::build (false, int62_t::min); - cerr << "should be " << int62_t::min << ' ' << x.val() << endl; + cerr << "should be " << int62_t::min << ' ' << x.val() << " flagged ? " << x.flagged() << endl; x = int62_t::build (true, int62_t::min); cerr << "should still be " << int62_t::min << ' ' << x.val() << " and also flag: " << x.flagged() << endl;