mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-06 05:55:08 +00:00
clang8 integer sanitizer suppressions
This commit is contained in:
parent
0a23881341
commit
c8717a370f
1 changed files with 6 additions and 0 deletions
|
@ -71,6 +71,12 @@ namespace utf8
|
|||
|
||||
template <typename octet_iterator>
|
||||
octet_iterator append(uint32_t cp, octet_iterator result)
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wunknown-sanitizers"
|
||||
__attribute__((no_sanitize("implicit-integer-sign-change")))
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
{
|
||||
if (!utf8::internal::is_code_point_valid(cp))
|
||||
throw invalid_code_point(cp);
|
||||
|
|
Loading…
Add table
Reference in a new issue