summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/parse/properties/utils.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parse/properties/utils.c b/src/parse/properties/utils.c
index 014de6f..c7af699 100644
--- a/src/parse/properties/utils.c
+++ b/src/parse/properties/utils.c
@@ -158,7 +158,6 @@ css_error parse_colour_specifier(css_language *c,
goto invalid;
}
- /** \todo Is this endian safe? */
*result = (r << 24) | (g << 16) | (b << 8);
return CSS_OK;
@@ -384,7 +383,6 @@ css_error parse_hash_colour(lwc_string *data, uint32_t *result)
} else
return CSS_INVALID;
- /** \todo Is this endian safe? */
*result = (r << 24) | (g << 16) | (b << 8);
return CSS_OK;