X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/729e4ab9bc6618bc3d8a898e575df7f4019e29ca..08b89b0a244153b9f5bbb2f49c55ab0f7298122e:/icuSources/common/bytestream.cpp diff --git a/icuSources/common/bytestream.cpp b/icuSources/common/bytestream.cpp index e2142ce1..ebd4148e 100644 --- a/icuSources/common/bytestream.cpp +++ b/icuSources/common/bytestream.cpp @@ -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;