summaryrefslogtreecommitdiff
path: root/src/select/select.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-12-13 20:16:52 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2013-12-13 20:16:52 +0000
commit1b95fec601a3d006ba6b99e1dea3f61c3c8318fc (patch)
tree1a0c3a78afe1db919ff6b4c56a6c3f2e01d03607 /src/select/select.h
parente3372335ec1628e1d6ef1a4fd63b11bb47f2e0e6 (diff)
downloadlibcss-1b95fec601a3d006ba6b99e1dea3f61c3c8318fc.tar.gz
libcss-1b95fec601a3d006ba6b99e1dea3f61c3c8318fc.tar.bz2
Various changes which modify API and ABI:
- Remove client allocation function. - Change node_classes callback not to yield array ownership to libcss. - Node bloom filters now built by, during selection libcss. - Added selection callbacks to get and set data on document nodes. Test suite, example, and documentation updated to match.
Diffstat (limited to 'src/select/select.h')
-rw-r--r--src/select/select.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/select/select.h b/src/select/select.h
index 43c29d2..fad86ac 100644
--- a/src/select/select.h
+++ b/src/select/select.h
@@ -69,8 +69,8 @@ static inline void advance_bytecode(css_style *style, uint32_t n_bytes)
style->bytecode = style->bytecode + (n_bytes / sizeof(css_code_t));
}
-bool css__outranks_existing(uint16_t op, bool important, css_select_state *state,
- bool inherit);
+bool css__outranks_existing(uint16_t op, bool important,
+ css_select_state *state, bool inherit);
#endif