diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/unstable/blobbuilder.cpp | 8 | ||||
-rw-r--r-- | src/unstable/blobbuilder.h | 1 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/unstable/blobbuilder.cpp b/src/unstable/blobbuilder.cpp index b98476b..a3f686e 100644 --- a/src/unstable/blobbuilder.cpp +++ b/src/unstable/blobbuilder.cpp | |||
@@ -5,14 +5,14 @@ | |||
5 | * terms of the license contained in the file LICENSE. | 5 | * terms of the license contained in the file LICENSE. |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include "blobbuilder.h" | 8 | #include "bu/blobbuilder.h" |
9 | #include "bu/blob.h" | ||
9 | 10 | ||
10 | ///// | 11 | ///// |
11 | // BlobBuilderCore::Chunk | 12 | // BlobBuilderCore::Chunk |
12 | // | 13 | // |
13 | 14 | ||
14 | Bu::BlobBuilderCore::Chunk::Chunk() : | 15 | Bu::BlobBuilderCore::Chunk::Chunk() : |
15 | iFill( 0 ), | ||
16 | iLength( 0 ), | 16 | iLength( 0 ), |
17 | pData( 0 ), | 17 | pData( 0 ), |
18 | pNext( 0 ) | 18 | pNext( 0 ) |
@@ -39,9 +39,9 @@ Bu::BlobBuilderCore::BlobBuilderCore() : | |||
39 | } | 39 | } |
40 | 40 | ||
41 | Bu::BlobBuilderCore::BlobBuilderCore( const Bu::BlobBuilderCore &rSrc ) : | 41 | Bu::BlobBuilderCore::BlobBuilderCore( const Bu::BlobBuilderCore &rSrc ) : |
42 | iLength( rSrc.iLength ), | ||
43 | pFirst( 0 ), | 42 | pFirst( 0 ), |
44 | pLast( 0 ) | 43 | pLast( 0 ), |
44 | iLength( rSrc.iLength ) | ||
45 | { | 45 | { |
46 | 46 | ||
47 | } | 47 | } |
diff --git a/src/unstable/blobbuilder.h b/src/unstable/blobbuilder.h index 817a990..5416cb4 100644 --- a/src/unstable/blobbuilder.h +++ b/src/unstable/blobbuilder.h | |||
@@ -13,6 +13,7 @@ | |||
13 | 13 | ||
14 | namespace Bu | 14 | namespace Bu |
15 | { | 15 | { |
16 | class Blob; | ||
16 | class BlobBuilder; | 17 | class BlobBuilder; |
17 | 18 | ||
18 | class BlobBuilderCore | 19 | class BlobBuilderCore |