We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efd0c27 commit 080b2cfCopy full SHA for 080b2cf
boost/network/utils/base64/encode.hpp
@@ -52,7 +52,7 @@ namespace detail {
52
// from the input sequence to encode.
53
template <typename Value>
54
char encode_value(Value value) {
55
- static char const * encoding = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
+ static char const encoding[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
56
return encoding[static_cast<unsigned int>(value)];
57
}
58
0 commit comments