]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/common/bytestream.cpp
ICU-531.48.tar.gz
[apple/icu.git] / icuSources / common / bytestream.cpp
index e2142ce1eae658534b019ac7f33e7f328f7d1afe..ebd4148e02f2d15e6c8c4987cae68f2705a55ae6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2009-2010, International Business Machines
+// Copyright (C) 2009-2011, International Business Machines
 // Corporation and others. All Rights Reserved.
 //
 // Copyright 2007 Google Inc. All Rights Reserved.
@@ -10,6 +10,8 @@
 
 U_NAMESPACE_BEGIN
 
+ByteSink::~ByteSink() {}
+
 char* ByteSink::GetAppendBuffer(int32_t min_capacity,
                                 int32_t /*desired_capacity_hint*/,
                                 char* scratch, int32_t scratch_capacity,
@@ -29,6 +31,8 @@ CheckedArrayByteSink::CheckedArrayByteSink(char* outbuf, int32_t capacity)
       size_(0), appended_(0), overflowed_(FALSE) {
 }
 
+CheckedArrayByteSink::~CheckedArrayByteSink() {}
+
 CheckedArrayByteSink& CheckedArrayByteSink::Reset() {
   size_ = appended_ = 0;
   overflowed_ = FALSE;