Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use standard CHAR_BIT macro #14

Merged
merged 1 commit into from
Dec 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions base91.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ SOFTWARE.

#include <vector>
#include <string>
#include <climits>
//#include <cstdlib>

#if __CHAR_BIT__ != 8
#if CHAR_BIT != 8
#error DESIGNED ONLY FOR 8 BIT BYTE (CHAR)
#endif

Expand All @@ -54,7 +55,7 @@ class base91
static const char BASE91_LEN = 91;

/** Bits in one byte. Should be 8 */
static const unsigned char_bit = __CHAR_BIT__;
static const unsigned char_bit = CHAR_BIT;

/** Pair of base91 symbols might code 13 bits */
static const unsigned b91word_bit = 13;
Expand Down