Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r61949 - in sandbox/SOC/2010/bit_masks: . boost/integer
From: bbartmanboost_at_[hidden]
Date: 2010-05-13 10:45:39


Author: bbartman
Date: 2010-05-13 10:45:38 EDT (Thu, 13 May 2010)
New Revision: 61949
URL: http://svn.boost.org/trac/boost/changeset/61949

Log:
working on creating meta functions and testing them
Added:
   sandbox/SOC/2010/bit_masks/boost/integer/bit_width.hpp (contents, props changed)
Text files modified:
   sandbox/SOC/2010/bit_masks/boost/integer/high_low_bits.hpp | 4 +++-
   sandbox/SOC/2010/bit_masks/notes.txt | 6 ------
   2 files changed, 3 insertions(+), 7 deletions(-)

Added: sandbox/SOC/2010/bit_masks/boost/integer/bit_width.hpp
==============================================================================

Modified: sandbox/SOC/2010/bit_masks/boost/integer/high_low_bits.hpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/boost/integer/high_low_bits.hpp (original)
+++ sandbox/SOC/2010/bit_masks/boost/integer/high_low_bits.hpp 2010-05-13 10:45:38 EDT (Thu, 13 May 2010)
@@ -16,7 +16,9 @@
 template <typename T, T Width>
 struct low_bits
     :integral_constant<T, ~(~T(0) << Width) >
-{ };
+{
+ typedef low_bits<T,Width> type;
+};
 
 } // namespace boost
 

Modified: sandbox/SOC/2010/bit_masks/notes.txt
==============================================================================
--- sandbox/SOC/2010/bit_masks/notes.txt (original)
+++ sandbox/SOC/2010/bit_masks/notes.txt 2010-05-13 10:45:38 EDT (Thu, 13 May 2010)
@@ -21,12 +21,6 @@
 unsigned long
 int
 unsigned int
-float
-unsigned float
-double
-unsigned double
-long double
-unsigned long double
 long long
 unsigned long long
 


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