summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/count_bits.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/count_bits.h')
-rw-r--r--gr-blocks/include/gnuradio/blocks/count_bits.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/count_bits.h b/gr-blocks/include/gnuradio/blocks/count_bits.h
index 80b58041bd..264b6ed363 100644
--- a/gr-blocks/include/gnuradio/blocks/count_bits.h
+++ b/gr-blocks/include/gnuradio/blocks/count_bits.h
@@ -26,21 +26,21 @@
#include <gnuradio/blocks/api.h>
namespace gr {
- namespace blocks {
+namespace blocks {
- //! return number of set bits in the low 8 bits of x
- BLOCKS_API unsigned int count_bits8(unsigned int x);
+//! return number of set bits in the low 8 bits of x
+BLOCKS_API unsigned int count_bits8(unsigned int x);
- //! return number of set bits in the low 16 bits of x
- BLOCKS_API unsigned int count_bits16(unsigned int x);
+//! return number of set bits in the low 16 bits of x
+BLOCKS_API unsigned int count_bits16(unsigned int x);
- //! return number of set bits in the low 32 bits of x
- BLOCKS_API unsigned int count_bits32(unsigned int x);
+//! return number of set bits in the low 32 bits of x
+BLOCKS_API unsigned int count_bits32(unsigned int x);
- //! return number of set bits in a 64-bit word
- BLOCKS_API unsigned int count_bits64(unsigned long long int x);
+//! return number of set bits in a 64-bit word
+BLOCKS_API unsigned int count_bits64(unsigned long long int x);
- } /* namespace blocks */
+} /* namespace blocks */
} /* namespace gr */
#endif /* _GR_COUNT_BITS_H_ */