Permalink
Browse files

whitespace finnicking

  • Loading branch information...
1 parent 5cb9d97 commit f1c257616211f0631043eda7129adaa63f929884 @BenLangmead committed Apr 16, 2017
Showing with 3 additions and 3 deletions.
  1. +3 −3 bitset.h
View
@@ -93,7 +93,7 @@ class SyncBitset {
*/
bool test(uint32_t i) {
bool ret;
- ThreadSafe _ts(&mutex_m);
+ ThreadSafe _ts(&mutex_m);
ret = testUnsync(i);
return ret;
}
@@ -103,7 +103,7 @@ class SyncBitset {
* it has been set. Uses synchronization.
*/
void set(uint32_t i) {
- ThreadSafe _ts(&mutex_m);
+ ThreadSafe _ts(&mutex_m);
while(i >= _sz) {
// Slow path: bitset needs to be expanded before the
// specified bit can be set
@@ -123,7 +123,7 @@ class SyncBitset {
* synchronization.
*/
void setOver(uint32_t i) {
- ThreadSafe _ts(&mutex_m);
+ ThreadSafe _ts(&mutex_m);
while(i >= _sz) {
// Slow path: bitset needs to be expanded before the
// specified bit can be set

0 comments on commit f1c2576

Please sign in to comment.