Path: blob/jdk8u272-b10-aarch32-20201026/jdk/src/share/native/common/unicode/std_string.h
48773 views
// © 2016 and later: Unicode, Inc. and others.1// License & terms of use: http://www.unicode.org/copyright.html2/*3*******************************************************************************4*5* Copyright (C) 2009-2014, International Business Machines6* Corporation and others. All Rights Reserved.7*8*******************************************************************************9* file name: std_string.h10* encoding: UTF-811* tab size: 8 (not used)12* indentation:413*14* created on: 2009feb1915* created by: Markus W. Scherer16*/1718#ifndef __STD_STRING_H__19#define __STD_STRING_H__2021/**22* \file23* \brief C++ API: Central ICU header for including the C++ standard <string>24* header and for related definitions.25*/2627#include "unicode/utypes.h"2829// Workaround for a libstdc++ bug before libstdc++4.6 (2011).30// https://bugs.llvm.org/show_bug.cgi?id=1336431#if defined(__GLIBCXX__)32namespace std { class type_info; }33#endif34#include <string>3536#endif // __STD_STRING_H__373839