blob: 60b22bc535e502ad848c08a5d569d4a005f15abc [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/strings/strcat_win.h"
#include <string>
#include "base/containers/span.h"
#include "base/strings/strcat_internal.h"
#include "base/strings/string_piece.h"
namespace gurl_base {
#if defined(BASE_STRING16_IS_STD_U16STRING)
std::wstring StrCat(span<const WStringPiece> pieces) {
return internal::StrCatT(pieces);
}
std::wstring StrCat(span<const std::wstring> pieces) {
return internal::StrCatT(pieces);
}
void StrAppend(std::wstring* dest, span<const WStringPiece> pieces) {
internal::StrAppendT(dest, pieces);
}
void StrAppend(std::wstring* dest, span<const std::wstring> pieces) {
internal::StrAppendT(dest, pieces);
}
#endif
} // namespace base