id summary reporter owner description type status milestone component version severity resolution keywords cc 12909 Unnecessary performance issue for base64 encoding and decoding martin.apel@… Robert Ramey The base64 encoding and decoding of base64_from_binary and binary_from_base64 contains an unnecessary performance issue. The tables used in the implementation are declared locally in each routine, but they are not declared static. At least with GCC 4.9, even at optimization lievel -O2 this incurs a major performance decrease, which can be avoided by making these tables static. Patches closed To Be Determined serialization Boost 1.63.0 Optimization fixed Performance Base64