From c2c2b8cd5afa4f7a0f0ff01fe852e7c18da9f299 Mon Sep 17 00:00:00 2001 From: Gunter Winkler Date: Mon, 27 Aug 2012 22:34:03 +0000 Subject: [PATCH] boost/numeric/ublas/traits.hpp - apply patch, see #6514 svn path=/trunk/boost/numeric/ublas/; revision=80268 --- include/boost/numeric/ublas/traits.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/numeric/ublas/traits.hpp b/include/boost/numeric/ublas/traits.hpp index 6964031c..25421efd 100644 --- a/include/boost/numeric/ublas/traits.hpp +++ b/include/boost/numeric/ublas/traits.hpp @@ -594,10 +594,10 @@ namespace boost { namespace numeric { namespace ublas { struct has_trivial_destructor : public boost::has_trivial_destructor {}; template - struct has_trivial_constructor > : public boost::true_type {}; + struct has_trivial_constructor > : public has_trivial_constructor {}; template - struct has_trivial_destructor > : public boost::true_type {}; + struct has_trivial_destructor > : public has_trivial_destructor {}; }