epoc32/include/stdapis/stlportv5/bitset
branchSymbian3
changeset 4 837f303aceeb
parent 3 e1b950c65cb4
     1.1 --- a/epoc32/include/stdapis/stlportv5/bitset	Wed Mar 31 12:27:01 2010 +0100
     1.2 +++ b/epoc32/include/stdapis/stlportv5/bitset	Wed Mar 31 12:33:34 2010 +0100
     1.3 @@ -2,13 +2,13 @@
     1.4   * Copyright (c) 1998
     1.5   * Silicon Graphics Computer Systems, Inc.
     1.6   *
     1.7 - * Copyright (c) 1999 
     1.8 + * Copyright (c) 1999
     1.9   * Boris Fomitchev
    1.10   *
    1.11   * This material is provided "as is", with absolutely no warranty expressed
    1.12   * or implied. Any use is at your own risk.
    1.13   *
    1.14 - * Permission to use or copy this software for any purpose is hereby granted 
    1.15 + * Permission to use or copy this software for any purpose is hereby granted
    1.16   * without fee, provided the above notices are retained on all copies.
    1.17   * Permission to modify the code and to distribute modified code is granted,
    1.18   * provided the above notices are retained, and a notice that the code was
    1.19 @@ -24,12 +24,12 @@
    1.20  // THIS FEATURE*.  It is experimental, and it may be removed in
    1.21  // future releases.
    1.22  
    1.23 -// A bitset of size N, using words of type _WordT, will have 
    1.24 +// A bitset of size N, using words of type _WordT, will have
    1.25  // N % (sizeof(_WordT) * CHAR_BIT) unused bits.  (They are the high-
    1.26  // order bits in the highest word.)  It is a class invariant
    1.27  // of class bitset<> that those unused bits are always zero.
    1.28  
    1.29 -// Most of the actual code isn't contained in bitset<> itself, but in the 
    1.30 +// Most of the actual code isn't contained in bitset<> itself, but in the
    1.31  // base class _Base_bitset.  The base class works with whole words, not with
    1.32  // individual bits.  This allows us to specialize _Base_bitset for the
    1.33  // important special case where the bitset is only a single word.
    1.34 @@ -39,25 +39,24 @@
    1.35  // to test(), except that it does no range checking.  The non-const version
    1.36  // returns a reference to a bit, again without doing any range checking.
    1.37  
    1.38 -# ifndef _STLP_OUTERMOST_HEADER_ID
    1.39 +#ifndef _STLP_OUTERMOST_HEADER_ID
    1.40  #  define _STLP_OUTERMOST_HEADER_ID 0x2
    1.41  #  include <stl/_prolog.h>
    1.42 -# endif
    1.43 +#endif
    1.44  
    1.45  #ifdef _STLP_PRAGMA_ONCE
    1.46 -# pragma once
    1.47 +#  pragma once
    1.48  #endif
    1.49  
    1.50 -# include <stl/_bitset.h>
    1.51 +#include <stl/_bitset.h>
    1.52  
    1.53 -# if (_STLP_OUTERMOST_HEADER_ID == 0x2 )
    1.54 +#if (_STLP_OUTERMOST_HEADER_ID == 0x2 )
    1.55  #  include <stl/_epilog.h>
    1.56  #  undef _STLP_OUTERMOST_HEADER_ID
    1.57 -# endif
    1.58 +#endif
    1.59  
    1.60  #endif /* _STLP_BITSET */
    1.61  
    1.62 -
    1.63  // Local Variables:
    1.64  // mode:C++
    1.65  // End: