diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-04-19 15:37:56 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-04-19 15:37:56 +0000 |
commit | d8a8c482b2f6b09ee8995b9563397a9b9bd135e8 (patch) | |
tree | d0fd5a6aa809f9caa67ff4723a04cff84e42615c /src/myriad.h | |
parent | 668737effd601778fba74edec14d22dd5b87457a (diff) | |
download | libbu++-d8a8c482b2f6b09ee8995b9563397a9b9bd135e8.tar.gz libbu++-d8a8c482b2f6b09ee8995b9563397a9b9bd135e8.tar.bz2 libbu++-d8a8c482b2f6b09ee8995b9563397a9b9bd135e8.tar.xz libbu++-d8a8c482b2f6b09ee8995b9563397a9b9bd135e8.zip |
Nevermind about the Myriad bug. It was really obvious, I was accidentally
adding all pre-allocated blocks to the header stream instead of just allocating
them. This caused some oddness, as you can probably imagine.
There's a good way to go before Myriad is as cool as it could be, but it's
already much more efficient and all around better than nids. I'll have to write
a program to convert nids cache stores to myriad cache stores, but that should
be fairly minor.
Diffstat (limited to '')
-rw-r--r-- | src/myriad.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/myriad.h b/src/myriad.h index 8f626a4..9bbc812 100644 --- a/src/myriad.h +++ b/src/myriad.h | |||
@@ -159,6 +159,7 @@ namespace Bu | |||
159 | StreamArray aStreams; | 159 | StreamArray aStreams; |
160 | typedef Bu::Hash<int, Block *> BlockHash; | 160 | typedef Bu::Hash<int, Block *> BlockHash; |
161 | BlockHash hActiveBlocks; | 161 | BlockHash hActiveBlocks; |
162 | bool bHeaderChanged; | ||
162 | }; | 163 | }; |
163 | }; | 164 | }; |
164 | 165 | ||