From 36f5e4c4c86905825a88acba745245b9d5092020 Mon Sep 17 00:00:00 2001 From: DevJPM Date: Wed, 13 Jan 2016 22:38:56 +0100 Subject: [PATCH] updated to offer the option to hide the base Added the config.h related changes of the Integer patch (show_no_base only) --- config.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/config.h b/config.h index 8a26dd0a..6563194e 100644 --- a/config.h +++ b/config.h @@ -86,6 +86,14 @@ // CACM paper. // #define LCRNG_ORIGINAL_NUMBERS +// Define this if you want Integer's operator<< to honor std::showbase (and +// std::noshowbase). If defined, Integer will use a suffix of 'b', 'o', 'h' +// or '.' (the last for decimal) when std::showbase is in effect. If +// std::noshowbase is set, then the suffix is not added to the Integer. If +// not defined, existing behavior is preserved and Integer will use a suffix +// of 'b', 'o', 'h' or '.' (the last for decimal). +// #define CRYPTOPP_USE_STD_SHOWBASE + // choose which style of sockets to wrap (mostly useful for MinGW which has both) #if !defined(NO_BERKELEY_STYLE_SOCKETS) && !defined(PREFER_BERKELEY_STYLE_SOCKETS) # define PREFER_BERKELEY_STYLE_SOCKETS