mirror of
https://github.com/martinrotter/rssguard.git
synced 2025-01-30 09:04:52 +01:00
Merge pull request #271 from eclipseo/fix_signed_char
Force use of signed char in mimesis.cpp
This commit is contained in:
commit
f6b7ad6d71
@ -38,7 +38,7 @@ using namespace std;
|
||||
|
||||
namespace Mimesis {
|
||||
static const string base64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
||||
static const char base64_inverse[256] = {
|
||||
static const signed char base64_inverse[256] = {
|
||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
|
||||
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
|
||||
|
Loading…
x
Reference in New Issue
Block a user