summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2019-05-04 14:02:25 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2019-05-04 14:02:25 +0100
commit171cb33082983c145ac9818b94e38f486c5f407b (patch)
tree05d9f33aa70afb28a142775d6accb669ee660976
parentc0ce0471b979d6fe39a16c7aed4f183922219e2e (diff)
downloadlibcss-171cb33082983c145ac9818b94e38f486c5f407b.tar.gz
libcss-171cb33082983c145ac9818b94e38f486c5f407b.tar.bz2
Media queries: Selection: For now, we just say the condition matches.
Signed-off-by: Michael Drake <michael.drake@codethink.co.uk>
-rw-r--r--src/select/mq.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/select/mq.h b/src/select/mq.h
index 5aa1404..a84822d 100644
--- a/src/select/mq.h
+++ b/src/select/mq.h
@@ -18,7 +18,8 @@
static inline bool mq_match_condition(css_mq_cond *cond)
{
/* TODO: Implement this. */
- return cond == NULL;
+ (void) cond;
+ return true;
}
/**