mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-04 17:26:42 +00:00
Suppress ubsan warning
This commit is contained in:
parent
c3099beb6f
commit
60d85d598c
@ -342,6 +342,9 @@ template <typename T> inline T* make_checked(T* p, std::size_t) { return p; }
|
||||
#endif
|
||||
|
||||
template <typename Container, FMT_ENABLE_IF(is_contiguous<Container>::value)>
|
||||
#if FMT_CLANG_VERSION
|
||||
__attribute__((no_sanitize("undefined")))
|
||||
#endif
|
||||
inline checked_ptr<typename Container::value_type> reserve(
|
||||
std::back_insert_iterator<Container> it, std::size_t n) {
|
||||
Container& c = get_container(it);
|
||||
|
Loading…
Reference in New Issue
Block a user