From 62cce2aaaf1484808edf5222dda3df2581fba56b Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Sun, 30 Dec 2012 01:07:13 +0000 Subject: [PATCH] Merge fix from trunk; Fixes #7819 [SVN r82280] --- 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 {};