commit | f655fd3cafc0d6f1859c05de7614d474df096ce8 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Tue Oct 03 22:26:28 2023 +0000 |
committer | Elliott Hughes <enh@google.com> | Tue Oct 03 22:26:28 2023 +0000 |
tree | 4af5984d0e3569d455faf926d102b2d7b47b0fc1 | |
parent | 43c6d76ad4d8fb2f5b90cac7939b9918a7b23825 [diff] |
C++20: don't use auto with u8"". `u8""` has type `const char8_t*` rather than `const char*` in C++20, but there's no `strlen()` for `char8_t*`, which breaks the build here. Luckily this is the only place in the entire tree that does this. Let's just remove the `auto`s. Test: treehugger Change-Id: I74c29889b4a60fdb642059c8699335c2abe99b34