Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers...
[reactos.git] / reactos / sdk / include / c++ / stlport / bitset
diff --git a/reactos/sdk/include/c++/stlport/bitset b/reactos/sdk/include/c++/stlport/bitset
deleted file mode 100644 (file)
index df73e53..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-/*\r
- * Copyright (c) 1998\r
- * Silicon Graphics Computer Systems, Inc.\r
- *\r
- * Copyright (c) 1999\r
- * Boris Fomitchev\r
- *\r
- * This material is provided "as is", with absolutely no warranty expressed\r
- * or implied. Any use is at your own risk.\r
- *\r
- * Permission to use or copy this software for any purpose is hereby granted\r
- * without fee, provided the above notices are retained on all copies.\r
- * Permission to modify the code and to distribute modified code is granted,\r
- * provided the above notices are retained, and a notice that the code was\r
- * modified is included with the above copyright notice.\r
- *\r
- */\r
-\r
-#ifndef _STLP_BITSET\r
-\r
-// This implementation of bitset<> has a second template parameter,\r
-// _WordT, which defaults to unsigned long.  *YOU SHOULD NOT USE\r
-// THIS FEATURE*.  It is experimental, and it may be removed in\r
-// future releases.\r
-\r
-// A bitset of size N, using words of type _WordT, will have\r
-// N % (sizeof(_WordT) * CHAR_BIT) unused bits.  (They are the high-\r
-// order bits in the highest word.)  It is a class invariant\r
-// of class bitset<> that those unused bits are always zero.\r
-\r
-// Most of the actual code isn't contained in bitset<> itself, but in the\r
-// base class _Base_bitset.  The base class works with whole words, not with\r
-// individual bits.  This allows us to specialize _Base_bitset for the\r
-// important special case where the bitset is only a single word.\r
-\r
-// The C++ standard does not define the precise semantics of operator[].\r
-// In this implementation the const version of operator[] is equivalent\r
-// to test(), except that it does no range checking.  The non-const version\r
-// returns a reference to a bit, again without doing any range checking.\r
-\r
-#ifndef _STLP_OUTERMOST_HEADER_ID\r
-#  define _STLP_OUTERMOST_HEADER_ID 0x2\r
-#  include <stl/_prolog.h>\r
-#  define _STLP_BITSET\r
-#endif\r
-\r
-#if (_STLP_OUTERMOST_HEADER_ID == 0x2)\r
-#  ifndef _STLP_INTERNAL_BITSET\r
-#    include <stl/_bitset.h>\r
-#  endif\r
-#endif\r
-\r
-#if (_STLP_OUTERMOST_HEADER_ID != 0x2) || defined (_STLP_IMPORT_VENDOR_STD)\r
-#  if defined (_STLP_HAS_INCLUDE_NEXT)\r
-#    include_next <bitset>\r
-#  else\r
-#    include _STLP_NATIVE_HEADER(bitset)\r
-#  endif\r
-#endif\r
-\r
-#if (_STLP_OUTERMOST_HEADER_ID == 0x2 )\r
-#  include <stl/_epilog.h>\r
-#  undef _STLP_OUTERMOST_HEADER_ID\r
-#endif\r
-\r
-#endif /* _STLP_BITSET */\r
-\r
-// Local Variables:\r
-// mode:C++\r
-// End:\r