Exemplo n.º 1
0
static glong _chk(const lutil_check_support_t css, const gchar *url,
                  const QuviSupportsType qst, GSList **dst)
{
  const glong r = _support(css, url, qst);
  if (r == QUVI_OK)
    *dst = lutil_slist_prepend_if_unique(*dst, url);
  return (r);
}
 forceinline bool
 SupportValues<View,A>::support(double n) {
   if ((n < x.min()) || (n > x.max()))
     return false;
   return _support(static_cast<int>(n));
 }
 forceinline bool
 SupportValues<View,A>::support(int n) {
   if ((n < x.min()) || (n > x.max()))
     return false;
   return _support(n);
 }