Boost logo

Boost-Commit :

From: bdawes_at_[hidden]
Date: 2007-09-12 17:43:21


Author: bemandawes
Date: 2007-09-12 17:43:20 EDT (Wed, 12 Sep 2007)
New Revision: 39226
URL: http://svn.boost.org/trac/boost/changeset/39226

Log:
Some compilers warn on trailing enum constant list commas, so remove these to quiet the warnings.
Text files modified:
   trunk/boost/system/error_code.hpp | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/boost/system/error_code.hpp
==============================================================================
--- trunk/boost/system/error_code.hpp (original)
+++ trunk/boost/system/error_code.hpp 2007-09-12 17:43:20 EDT (Wed, 12 Sep 2007)
@@ -132,7 +132,7 @@
         too_many_links = EMLINK,
         too_many_synbolic_link_levels = ELOOP,
         value_too_large = EOVERFLOW,
- wrong_protocol_type = EPROTOTYPE,
+ wrong_protocol_type = EPROTOTYPE
       };
 
     } // namespace posix
@@ -478,7 +478,7 @@
       {
         no_net = ENONET,
         no_package = ENOPKG,
- no_share = ENOSHARE,
+ no_share = ENOSHARE
       };
     } // namespace cygwin
 
@@ -545,7 +545,7 @@
         too_many_references = ETOOMANYREFS,
         too_many_users = EUSERS,
         unattached = EUNATCH,
- unclean = EUCLEAN,
+ unclean = EUCLEAN
       };
     } // namespace Linux
 


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