Rev 1598 | Rev 1987 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1598 | Rev 1642 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | #include <string.h> |
24 | #include <string.h> |
| 25 | 25 | ||
| 26 | #include <boost/lexical_cast.hpp> |
26 | #include <boost/lexical_cast.hpp> |
| 27 | 27 | ||
| 28 | namespace atom { |
28 | namespace atom { |
| 29 | namespace |
29 | namespace common { |
| 30 | 30 | ||
| 31 | Bitset::Bitset(unsigned int count) |
31 | Bitset::Bitset(unsigned int count) |
| 32 | { |
32 | { |
| 33 | unsigned int byte_size = (int)ceil(count / 8); |
33 | unsigned int byte_size = (int)ceil(count / 8); |
| 34 | 34 | ||