mirror of
https://github.com/AdaCore/xmlada.git
synced 2026-02-12 12:30:28 -08:00
S823-015 The character code in base64 encoding preceding the terminating '=' must be a multiple of 4. This change fixes situation where this character could be any base64 character, which could happen when one-but-last character code was a multiple of 16. Change-Id: I9fe4fb266d07e127e9e64be9404571a91b32bcdb
12 lines
318 B
Plaintext
12 lines
318 B
Plaintext
with "../../shared";
|
|
with "xmlada_sax";
|
|
|
|
project Base64_Test is
|
|
for Main use ("test_base64");
|
|
for Object_Dir use "obj";
|
|
package Builder renames Shared.Builder;
|
|
package Compiler renames Shared.Compiler;
|
|
package Binder renames Shared.Binder;
|
|
package Linker renames Shared.Linker;
|
|
end Base64_Test;
|