diff options
author | Chih-Hung Hsieh <chh@google.com> | 2018-12-10 13:52:46 -0800 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2018-12-11 11:27:17 -0800 |
commit | 054dab1d476eab03823d4cbce40b1b081a65bf46 (patch) | |
tree | 06d7f8189b94f2899cb27d97723cc8e392fb78b4 /tools/localedata | |
parent | 3cfdb9484505f565025c8c2646b9fc2c7ceae7b9 (diff) |
Fix cert-dcl16-c clang-tidy warnings.
Bug: 120614316
Test: make with WITH_TIDY=1 DEFAULT_GLOBAL_TIDY_CHECKS=-*,cert-dcl16-c
Change-Id: I2dc262d3407aafa969e921236dc3fc3ae60eb9d4
Diffstat (limited to 'tools/localedata')
-rwxr-xr-x | tools/localedata/extract_icu_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/localedata/extract_icu_data.py b/tools/localedata/extract_icu_data.py index 9dceba2163eb..6b4c34677d96 100755 --- a/tools/localedata/extract_icu_data.py +++ b/tools/localedata/extract_icu_data.py @@ -155,7 +155,7 @@ def dump_representative_locales(representative_locales): print print 'std::unordered_set<uint64_t> REPRESENTATIVE_LOCALES({' for locale in sorted(representative_locales): - print ' 0x%08Xllu, // %s' % ( + print ' 0x%08XLLU, // %s' % ( pack_to_uint64(locale), locale) print '});' |