Changeset 3706
- Timestamp:
- 07/04/08 23:36:58 (2 months ago)
- Files:
-
- trunk/tango/io/encode/Base64.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/tango/io/encode/Base64.d
r3632 r3706 251 251 if (quadPtr is endPtr) 252 252 { 253 *rtnPt++ = ((base64Quad[0] << 2) | (base64Quad[1]) >> 4);253 *rtnPt++ = cast(ubyte) (((base64Quad[0] << 2) | (base64Quad[1]) >> 4)); 254 254 if (base64Quad[2] != BASE64_PAD) 255 255 { 256 *rtnPt++ = ((base64Quad[1] << 4) | (base64Quad[2] >> 2));256 *rtnPt++ = cast(ubyte) (((base64Quad[1] << 4) | (base64Quad[2] >> 2))); 257 257 encodedLength += 2; 258 258 break;












