Inline parsing functions. 10% speedup during load
This commit is contained in:
parent
c71f3b37e4
commit
092834f65e
1 changed files with 3 additions and 3 deletions
|
@ -1157,7 +1157,7 @@ adblock_compile_regexp (GHashTable* tbl,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static gchar*
|
static inline gchar*
|
||||||
adblock_add_url_pattern (gchar* prefix,
|
adblock_add_url_pattern (gchar* prefix,
|
||||||
gchar* type,
|
gchar* type,
|
||||||
gchar* line)
|
gchar* line)
|
||||||
|
@ -1196,7 +1196,7 @@ adblock_add_url_pattern (gchar* prefix,
|
||||||
return format_patt;
|
return format_patt;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static inline void
|
||||||
adblock_frame_add (gchar* line)
|
adblock_frame_add (gchar* line)
|
||||||
{
|
{
|
||||||
const gchar* separator = " , ";
|
const gchar* separator = " , ";
|
||||||
|
@ -1214,7 +1214,7 @@ adblock_frame_add (gchar* line)
|
||||||
g_string_append (blockcss, line);
|
g_string_append (blockcss, line);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static inline void
|
||||||
adblock_frame_add_private (const gchar* line,
|
adblock_frame_add_private (const gchar* line,
|
||||||
const gchar* sep)
|
const gchar* sep)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue