From 250655ad6d710359e1a7bdce81cdcc47bb70be51 Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Fri, 31 Jan 2014 19:42:29 -0800 Subject: [PATCH] Add 'std:' qualification to size_t. Fixes Bug #6184 --- include/boost/function/function_template.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/function/function_template.hpp b/include/boost/function/function_template.hpp index 73ed72e..1ec13d0 100644 --- a/include/boost/function/function_template.hpp +++ b/include/boost/function/function_template.hpp @@ -938,7 +938,7 @@ namespace boost { if (boost::has_trivial_copy_constructor::value && boost::has_trivial_destructor::value && detail::function::function_allows_small_object_optimization::value) - value |= static_cast(0x01); + value |= static_cast(0x01); vtable = reinterpret_cast(value); } else vtable = 0;