aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <mbuland@penny-arcade.com>2019-05-31 10:42:20 -0700
committerMike Buland <mbuland@penny-arcade.com>2019-05-31 10:42:20 -0700
commitfba48701e8f7c1e08e0ed16cceba6bf0f22a7481 (patch)
tree92d40efe851e31ec9b2ee6a7a8902c416c0321e7
parent806d0475416558a64dc2bacd253b7406bdea29a7 (diff)
downloadlibbu++-fba48701e8f7c1e08e0ed16cceba6bf0f22a7481.tar.gz
libbu++-fba48701e8f7c1e08e0ed16cceba6bf0f22a7481.tar.bz2
libbu++-fba48701e8f7c1e08e0ed16cceba6bf0f22a7481.tar.xz
libbu++-fba48701e8f7c1e08e0ed16cceba6bf0f22a7481.zip
It builds again!
-rw-r--r--src/unstable/blobbuilder.cpp8
-rw-r--r--src/unstable/blobbuilder.h1
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
14Bu::BlobBuilderCore::Chunk::Chunk() : 15Bu::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
41Bu::BlobBuilderCore::BlobBuilderCore( const Bu::BlobBuilderCore &rSrc ) : 41Bu::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
14namespace Bu 14namespace Bu
15{ 15{
16 class Blob;
16 class BlobBuilder; 17 class BlobBuilder;
17 18
18 class BlobBuilderCore 19 class BlobBuilderCore