From 998c0171e842125760beb11b1f61ce83fc4b755f Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Mon, 29 May 2017 17:20:43 +1000 Subject: [PATCH] pascal: instantiations for signed lengths --- pascal.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pascal.cpp b/pascal.cpp index 87761817..2e53dc73 100644 --- a/pascal.cpp +++ b/pascal.cpp @@ -200,6 +200,13 @@ INSTANTIATE_D_S(D, uint64_t) //----------------------------------------------------------------------------- INSTANTIATE_D (char) + +INSTANTIATE_D (uint8_t) INSTANTIATE_D (uint16_t) INSTANTIATE_D (uint32_t) INSTANTIATE_D (uint64_t) + +INSTANTIATE_D (int8_t) +INSTANTIATE_D (int16_t) +INSTANTIATE_D (int32_t) +INSTANTIATE_D (int64_t)