Skip to content

Commit 8c95440

Browse files
mark internal function as static
1 parent 044981a commit 8c95440

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/stdlib/a64l.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace LIBC_NAMESPACE_DECL {
1919
// I'm not sure this should go in ctype_utils since the specific ordering of
2020
// base64 is so very implementation specific, and also this set is unusual.
2121
// Returns -1 on any char without a specified value.
22-
constexpr int32_t b64_char_to_int(char ch) {
22+
constexpr static int32_t b64_char_to_int(char ch) {
2323
// from the standard: "The characters used to represent digits are '.' (dot)
2424
// for 0, '/' for 1, '0' through '9' for [2,11], 'A' through 'Z' for [12,37],
2525
// and 'a' through 'z' for [38,63]."

0 commit comments

Comments
 (0)