update emoji autocorrect entries from po-files
[LibreOffice.git] / connectivity / source / drivers / odbc / appendsqlwchars.cxx
blob544573861cd87b0b85e3e8bf5a51b23cde9e1b04
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #include <sal/config.h>
12 #include <rtl/ustrbuf.hxx>
13 #include <sal/types.h>
15 #include <appendsqlwchars.hxx>
17 namespace connectivity { namespace odbc {
19 void appendSQLWCHARs(OUStringBuffer & s, const sal_Unicode* d, sal_Int32 n)
21 s.append(d, n);
24 #if defined SAL_UNICODE_NOTEQUAL_WCHAR_T
25 static_assert(sizeof (wchar_t) == 4, "sizeof wchar_t must be 4 for this to work");
26 void appendSQLWCHARs(OUStringBuffer & s, const wchar_t* d, sal_Int32 n)
28 const wchar_t * const end = d + n;
29 for (; d < end; ++d)
31 s.appendUtf32(*d);
34 #endif
36 } }
38 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */