Open dcb314 opened 8 years ago
scss/src/_speedups.c:243]: (style) A pointer can not be negative so it is either pointless or an error to check if it is.
Source code is
if (p_token < 0) {
Maybe better code
if (p_token == 0) {
scss/src/_speedups.c:243]: (style) A pointer can not be negative so it is either pointless or an error to check if it is.
Source code is
Maybe better code