epoc32/include/stdapis/stlportv5/bitset
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
--- a/epoc32/include/stdapis/stlportv5/bitset	Wed Mar 31 12:27:01 2010 +0100
+++ b/epoc32/include/stdapis/stlportv5/bitset	Wed Mar 31 12:33:34 2010 +0100
@@ -2,13 +2,13 @@
  * Copyright (c) 1998
  * Silicon Graphics Computer Systems, Inc.
  *
- * Copyright (c) 1999 
+ * Copyright (c) 1999
  * Boris Fomitchev
  *
  * This material is provided "as is", with absolutely no warranty expressed
  * or implied. Any use is at your own risk.
  *
- * Permission to use or copy this software for any purpose is hereby granted 
+ * Permission to use or copy this software for any purpose is hereby granted
  * without fee, provided the above notices are retained on all copies.
  * Permission to modify the code and to distribute modified code is granted,
  * provided the above notices are retained, and a notice that the code was
@@ -24,12 +24,12 @@
 // THIS FEATURE*.  It is experimental, and it may be removed in
 // future releases.
 
-// A bitset of size N, using words of type _WordT, will have 
+// A bitset of size N, using words of type _WordT, will have
 // N % (sizeof(_WordT) * CHAR_BIT) unused bits.  (They are the high-
 // order bits in the highest word.)  It is a class invariant
 // of class bitset<> that those unused bits are always zero.
 
-// Most of the actual code isn't contained in bitset<> itself, but in the 
+// Most of the actual code isn't contained in bitset<> itself, but in the
 // base class _Base_bitset.  The base class works with whole words, not with
 // individual bits.  This allows us to specialize _Base_bitset for the
 // important special case where the bitset is only a single word.
@@ -39,25 +39,24 @@
 // to test(), except that it does no range checking.  The non-const version
 // returns a reference to a bit, again without doing any range checking.
 
-# ifndef _STLP_OUTERMOST_HEADER_ID
+#ifndef _STLP_OUTERMOST_HEADER_ID
 #  define _STLP_OUTERMOST_HEADER_ID 0x2
 #  include <stl/_prolog.h>
-# endif
+#endif
 
 #ifdef _STLP_PRAGMA_ONCE
-# pragma once
+#  pragma once
 #endif
 
-# include <stl/_bitset.h>
+#include <stl/_bitset.h>
 
-# if (_STLP_OUTERMOST_HEADER_ID == 0x2 )
+#if (_STLP_OUTERMOST_HEADER_ID == 0x2 )
 #  include <stl/_epilog.h>
 #  undef _STLP_OUTERMOST_HEADER_ID
-# endif
+#endif
 
 #endif /* _STLP_BITSET */
 
-
 // Local Variables:
 // mode:C++
 // End: