diff options
author | 2024-02-15 11:02:58 -0800 | |
---|---|---|
committer | 2024-02-15 19:53:12 +0000 | |
commit | dbd43e71acecb085e28e46433d5cf5f722b88d1f (patch) | |
tree | 8b6c7877cdb7d6b145d73b2de4aa81d571ffc9fe /Android.bp | |
parent | 1f90242d24fd6659af8052d20f0f0889ac82c7a5 (diff) |
Use c++20 to allow format string checking
Bug: 305066880
Test: mma -j32
Flag: EXEMPT, build infrastructure change
Change-Id: Ic60b8a4959e013fd2455a4c85659d4d0f7052b2e
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp index d585c6c9ca..2066ba6d4b 100644 --- a/Android.bp +++ b/Android.bp @@ -70,5 +70,5 @@ cc_defaults { "-Werror=reorder-init-list", ], c_std: "c99", - cpp_std: "c++17", + cpp_std: "c++20", } |