minor spacing tweak
This commit is contained in:
parent
48ad745996
commit
5a7cc7fd8b
|
@ -315,9 +315,8 @@ hb_subset_plan_create (hb_face_t *face,
|
||||||
hb_subset_input_t *input)
|
hb_subset_input_t *input)
|
||||||
{
|
{
|
||||||
hb_subset_plan_t *plan;
|
hb_subset_plan_t *plan;
|
||||||
if (unlikely (!(plan = hb_object_create<hb_subset_plan_t> ()))) {
|
if (unlikely (!(plan = hb_object_create<hb_subset_plan_t> ())))
|
||||||
return const_cast<hb_subset_plan_t *> (&Null (hb_subset_plan_t));
|
return const_cast<hb_subset_plan_t *> (&Null (hb_subset_plan_t));
|
||||||
}
|
|
||||||
|
|
||||||
plan->successful = true;
|
plan->successful = true;
|
||||||
plan->drop_hints = input->drop_hints;
|
plan->drop_hints = input->drop_hints;
|
||||||
|
|
|
@ -90,10 +90,7 @@ struct hb_subset_plan_t
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
bool in_error () const
|
bool in_error () const { return !successful; }
|
||||||
{
|
|
||||||
return !successful;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* The set of input glyph ids which will be retained in the subset.
|
* The set of input glyph ids which will be retained in the subset.
|
||||||
|
|
Loading…
Reference in New Issue