CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 22

Threaded View

  1. #3
    Join Date
    May 2006
    Posts
    327

    Re: std::bitset woes

    I think std::bitset has another limitation: the maximum number of bits is limited to the size of a long integer (32 bits).

    Maybe you can consider the std::vector< bool > class, which stores each value in a single bit, and does not limit the size of the bitset.
    Last edited by Viorel; November 15th, 2006 at 08:45 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured