Mark i as unused for the sake of MSVC 0th case

This commit is contained in:
Jason Turner 2016-03-12 08:16:25 -07:00
parent c5f4a4dfd8
commit afa3f2249c

View File

@ -78,6 +78,7 @@ namespace chaiscript
{ {
try { try {
std::vector<Boxed_Value>::size_type i = 0; std::vector<Boxed_Value>::size_type i = 0;
(void)i;
(void)params; (void)t_conversions; (void)params; (void)t_conversions;
// this is ok because the order of evaluation of initializer lists is well defined // this is ok because the order of evaluation of initializer lists is well defined
(void)std::initializer_list<int>{(boxed_cast<Params>(params[i++], &t_conversions), 0)...}; (void)std::initializer_list<int>{(boxed_cast<Params>(params[i++], &t_conversions), 0)...};