Code style: Fixed braces on separate lines.
This commit is contained in:
@@ -509,8 +509,9 @@ The fall-through switches in UTF-8 reading code save a
|
||||
temp variable, some decrements & conditionals. The switches
|
||||
are equivalent to the following loop:
|
||||
{
|
||||
int tmpBytesToRead = extraBytesToRead+1;
|
||||
do {
|
||||
int tmpBytesToRead = extraBytesToRead + 1;
|
||||
do
|
||||
{
|
||||
ch += *source++;
|
||||
--tmpBytesToRead;
|
||||
if (tmpBytesToRead) ch <<= 6;
|
||||
@@ -784,7 +785,8 @@ AString Base64Decode(const AString & a_Base64String)
|
||||
|
||||
AString Base64Encode(const AString & a_Input)
|
||||
{
|
||||
static const char BASE64[64] = {
|
||||
static const char BASE64[64] =
|
||||
{
|
||||
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
|
||||
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
|
||||
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
|
||||
|
||||
Reference in New Issue
Block a user