Skip to content

Commit 4d0bc51

Browse files
committed
Merge pull request #2047 from asottile/remove_warning
Remove a warning under MSVC (x86_64)
2 parents fb3e6ef + a3fa333 commit 4d0bc51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bind.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ namespace Sass {
172172
break;
173173
} else {
174174
if (arglist->length() > LP - ip && !ps->has_rest_parameter()) {
175-
int arg_count = (arglist->length() + LA - 1);
175+
size_t arg_count = (arglist->length() + LA - 1);
176176
std::stringstream msg;
177177
msg << callee << " takes " << LP;
178178
msg << (LP == 1 ? " argument" : " arguments");

0 commit comments

Comments
 (0)