Skip to content

Commit

Permalink
Merge pull request #2047 from asottile/remove_warning
Browse files Browse the repository at this point in the history
Remove a warning under MSVC (x86_64)
  • Loading branch information
mgreter committed Apr 24, 2016
2 parents fb3e6ef + a3fa333 commit 4d0bc51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bind.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ namespace Sass {
break;
} else {
if (arglist->length() > LP - ip && !ps->has_rest_parameter()) {
int arg_count = (arglist->length() + LA - 1);
size_t arg_count = (arglist->length() + LA - 1);
std::stringstream msg;
msg << callee << " takes " << LP;
msg << (LP == 1 ? " argument" : " arguments");
Expand Down

0 comments on commit 4d0bc51

Please sign in to comment.