Skip to content

Commit f6e29e3

Browse files
committed
Fix msvc compiler warning
1 parent 30df7a9 commit f6e29e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2759,7 +2759,7 @@ namespace Sass {
27592759
re_selector_list
27602760
>(p)
27612761
) {
2762-
bool could_be_property = peek< sequence< exactly<'-'>, exactly<'-'> > >(p);
2762+
bool could_be_property = peek< sequence< exactly<'-'>, exactly<'-'> > >(p) != 0;
27632763
while (p < q) {
27642764
// did we have interpolations?
27652765
if (*p == '#' && *(p+1) == '{') {

0 commit comments

Comments
 (0)