From 32041a2ecc770fb7cb60c6ad3bca49f0ddd94ed3 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sun, 4 Mar 2018 11:25:06 -0500 Subject: [PATCH] More TODOs. --- _future/unittest/testing.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_future/unittest/testing.h b/_future/unittest/testing.h index c2d81690..550e5250 100644 --- a/_future/unittest/testing.h +++ b/_future/unittest/testing.h @@ -101,6 +101,12 @@ extern void testingTFail(testingT *t); // TODO should the defered function also have t passed to it? extern void testingTDefer(testingT *t, void (*f)(void *data), void *data); +// TODO IEEE 754 helpers +// references: +// - https://www.sourceware.org/ml/libc-alpha/2009-04/msg00005.html +// - https://gcc.gnu.org/onlinedocs/cpp/Common-Predefined-Macros.html +// - https://stackoverflow.com/questions/5085533/is-a-c-preprocessor-identical-to-a-c-preprocessor + // TODO should __LINE__ arguments use intmax_t or uintmax_t instead of int? extern void testingprivRegisterTest(const char *, void (*)(testingT *)); // see https://stackoverflow.com/questions/32399191/va-args-expansion-using-msvc