From a3fa3338e742dff7838ec23f579b8190b877d0d0 Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Sun, 24 Apr 2016 15:02:52 -0700 Subject: [PATCH] Remove a warning under MSVC (x86_64) --- src/bind.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bind.cpp b/src/bind.cpp index 89bc19263a..84c1f66667 100644 --- a/src/bind.cpp +++ b/src/bind.cpp @@ -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");