Move around
This commit is contained in:
parent
973717175d
commit
75fd845a4a
|
@ -34,6 +34,18 @@
|
||||||
#include "hb-null.hh"
|
#include "hb-null.hh"
|
||||||
|
|
||||||
|
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
template <typename T> T
|
||||||
|
operator () (const T& v) const { return v; }
|
||||||
|
} HB_FUNCOBJ (hb_identity);
|
||||||
|
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
template <typename T> bool
|
||||||
|
operator () (const T& v) const { return bool (v); }
|
||||||
|
} HB_FUNCOBJ (hb_bool);
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
/* Don't know how to set priority of following. Doesn't work right now. */
|
/* Don't know how to set priority of following. Doesn't work right now. */
|
||||||
|
@ -59,19 +71,6 @@ struct
|
||||||
}
|
}
|
||||||
} HB_FUNCOBJ (hb_hash);
|
} HB_FUNCOBJ (hb_hash);
|
||||||
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
template <typename T> T
|
|
||||||
operator () (const T& v) const { return v; }
|
|
||||||
} HB_FUNCOBJ (hb_identity);
|
|
||||||
|
|
||||||
struct
|
|
||||||
{
|
|
||||||
template <typename T> bool
|
|
||||||
operator () (const T& v) const { return bool (v); }
|
|
||||||
} HB_FUNCOBJ (hb_bool);
|
|
||||||
|
|
||||||
|
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Reference in New Issue