Bladeren bron

Fixed: base64encode should be const static

git-svn-id: https://svn.microneil.com/svn/CodeDweller/trunk@12 d34b734f-a00e-4b39-a726-e4eeb87269ab
wx
madscientist 15 jaren geleden
bovenliggende
commit
b58fa06a49
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1
    1
      base64codec.cpp

+ 1
- 1
base64codec.cpp Bestand weergeven



namespace base64codec { namespace base64codec {


char base64encode[65] = // Base64 encoding characters.
const static char base64encode[65] = // Base64 encoding characters.
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";


// The following table makes conversion fast because it's all lookups. The // The following table makes conversion fast because it's all lookups. The

Laden…
Annuleren
Opslaan