Update of /cvsroot/boost/boost/boost/numeric/ublas
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv32733

Modified Files:
        storage.hpp 
Log Message:
- fixed mistake in storage.hpp: s/not /! /g


Index: storage.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/numeric/ublas/storage.hpp,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -d -r1.76 -r1.77
--- storage.hpp 16 Mar 2007 22:39:16 -0000      1.76
+++ storage.hpp 17 Mar 2007 11:46:07 -0000      1.77
@@ -66,7 +66,7 @@
             alloc_(a), size_ (size) {
           if (size_) {
               data_ = alloc_.allocate (size_);
-              if (not detail::has_trivial_constructor<T>::value) {
+              if (! detail::has_trivial_constructor<T>::value) {
                   for (pointer d = data_; d != data_ + size_; ++d)
                       alloc_.construct(d, value_type());
               }
@@ -98,7 +98,7 @@
         BOOST_UBLAS_INLINE
         ~unbounded_array () {
             if (size_) {
-                if (not detail::has_trivial_destructor<T>::value) {
+                if (! detail::has_trivial_destructor<T>::value) {
                     // std::_Destroy (begin(), end(), alloc_);
                     const iterator i_end = end();
                     for (iterator i = begin (); i != i_end; ++i) {
@@ -137,7 +137,7 @@
                         }
                     }
                     else {
-                        if (not detail::has_trivial_constructor<T>::value) {
+                        if (! detail::has_trivial_constructor<T>::value) {
                             for (pointer di = data_; di != data_ + size; ++di)
                                 alloc_.construct (di, value_type());
                         }
@@ -145,7 +145,7 @@
                 }
 
                 if (size_) {
-                    if (not detail::has_trivial_destructor<T>::value) {
+                    if (! detail::has_trivial_destructor<T>::value) {
                         for (pointer si = p_data; si != p_data + size_; ++si)
                             alloc_.destroy (si);
                     }


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to