mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
Format
This commit is contained in:
parent
2f528ce4ed
commit
d053426bb4
1 changed files with 4 additions and 1 deletions
|
@ -134,7 +134,10 @@ struct hb_sanitize_context_t :
|
|||
const char *get_name () { return "SANITIZE"; }
|
||||
template <typename T, typename F>
|
||||
bool may_dispatch (const T *obj HB_UNUSED, const F *format)
|
||||
{ return format->sanitize (this) && hb_barrier (); }
|
||||
{
|
||||
return format->sanitize (this) &&
|
||||
hb_barrier ();
|
||||
}
|
||||
static return_t default_return_value () { return true; }
|
||||
static return_t no_dispatch_return_value () { return false; }
|
||||
bool stop_sublookup_iteration (const return_t r) const { return !r; }
|
||||
|
|
Loading…
Add table
Reference in a new issue