|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r78092 - trunk/boost/context/detail
From: oliver.kowalke_at_[hidden]
Date: 2012-04-20 11:52:39
Author: olli
Date: 2012-04-20 11:52:38 EDT (Fri, 20 Apr 2012)
New Revision: 78092
URL: http://svn.boost.org/trac/boost/changeset/78092
Log:
context: fix incorect member name in fcontext_t
Text files modified:
trunk/boost/context/detail/fcontext_arm.hpp | 2 +-
trunk/boost/context/detail/fcontext_i386_win.hpp | 2 +-
trunk/boost/context/detail/fcontext_mips.hpp | 2 +-
trunk/boost/context/detail/fcontext_ppc.hpp | 2 +-
trunk/boost/context/detail/fcontext_x86_64.hpp | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
Modified: trunk/boost/context/detail/fcontext_arm.hpp
==============================================================================
--- trunk/boost/context/detail/fcontext_arm.hpp (original)
+++ trunk/boost/context/detail/fcontext_arm.hpp 2012-04-20 11:52:38 EDT (Fri, 20 Apr 2012)
@@ -38,7 +38,7 @@
boost::uint32_t fc_freg[16];
fp_t() :
- fc_reg()
+ fc_freg()
{}
};
Modified: trunk/boost/context/detail/fcontext_i386_win.hpp
==============================================================================
--- trunk/boost/context/detail/fcontext_i386_win.hpp (original)
+++ trunk/boost/context/detail/fcontext_i386_win.hpp 2012-04-20 11:52:38 EDT (Fri, 20 Apr 2012)
@@ -38,7 +38,7 @@
boost::uint32_t fc_freg[2];
fp_t() :
- fc_reg()
+ fc_freg()
{}
};
Modified: trunk/boost/context/detail/fcontext_mips.hpp
==============================================================================
--- trunk/boost/context/detail/fcontext_mips.hpp (original)
+++ trunk/boost/context/detail/fcontext_mips.hpp 2012-04-20 11:52:38 EDT (Fri, 20 Apr 2012)
@@ -40,7 +40,7 @@
boost::uint64_t fc_freg[6];
fp_t() :
- fc_reg()
+ fc_freg()
{}
};
Modified: trunk/boost/context/detail/fcontext_ppc.hpp
==============================================================================
--- trunk/boost/context/detail/fcontext_ppc.hpp (original)
+++ trunk/boost/context/detail/fcontext_ppc.hpp 2012-04-20 11:52:38 EDT (Fri, 20 Apr 2012)
@@ -38,7 +38,7 @@
boost::uint64_t fc_freg[19];
fp_t() :
- fc_reg()
+ fc_freg()
{}
};
Modified: trunk/boost/context/detail/fcontext_x86_64.hpp
==============================================================================
--- trunk/boost/context/detail/fcontext_x86_64.hpp (original)
+++ trunk/boost/context/detail/fcontext_x86_64.hpp 2012-04-20 11:52:38 EDT (Fri, 20 Apr 2012)
@@ -38,7 +38,7 @@
boost::uint32_t fc_freg[2];
fp_t() :
- fc_reg()
+ fc_freg()
{}
};
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk