From 95a195639765e3d189341f5da152eb983e19603a Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Sat, 29 Dec 2012 16:36:12 +0000 Subject: [PATCH] Added missing 'std::'; Refs #7819 [SVN r82273] --- 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 42b7d0f..73ed72e 100644 --- a/include/boost/function/function_template.hpp +++ b/include/boost/function/function_template.hpp @@ -677,7 +677,7 @@ namespace boost { vtable_type* get_vtable() const { return reinterpret_cast( - reinterpret_cast(vtable) & ~static_cast(0x01)); + reinterpret_cast(vtable) & ~static_cast(0x01)); } struct clear_type {};