bitmapper 0.0.4 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. data/ext/bitmapper/bit_bucket.h +7 -7
  2. metadata +2 -2
@@ -5,14 +5,14 @@
5
5
  this is the bitfield which takes 1 byte(8-bits) of space in memory
6
6
  */
7
7
  typedef struct ByteBits{
8
- unsigned char f0:1;
9
- unsigned char f1:1;
10
- unsigned char f2:1;
11
- unsigned char f3:1;
12
- unsigned char f4:1;
13
- unsigned char f5:1;
14
- unsigned char f6:1;
15
8
  unsigned char f7:1;
9
+ unsigned char f6:1;
10
+ unsigned char f5:1;
11
+ unsigned char f4:1;
12
+ unsigned char f3:1;
13
+ unsigned char f2:1;
14
+ unsigned char f1:1;
15
+ unsigned char f0:1;
16
16
  } ByteBits;
17
17
 
18
18
  /*
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bitmapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-06-29 00:00:00.000000000 Z
12
+ date: 2012-07-05 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: A fast, in-memory, bit map filter!
15
15
  email: gouthamvel@gmail.com