00001 // © 2016 and later: Unicode, Inc. and others. 00002 // License & terms of use: http://www.unicode.org/copyright.html 00003 /* 00004 ******************************************************************************* 00005 * 00006 * Copyright (C) 2009-2014, International Business Machines 00007 * Corporation and others. All Rights Reserved. 00008 * 00009 ******************************************************************************* 00010 * file name: std_string.h 00011 * encoding: UTF-8 00012 * tab size: 8 (not used) 00013 * indentation:4 00014 * 00015 * created on: 2009feb19 00016 * created by: Markus W. Scherer 00017 */ 00018 00019 #ifndef __STD_STRING_H__ 00020 #define __STD_STRING_H__ 00021 00028 #include "unicode/utypes.h" 00029 00030 // Workaround for a libstdc++ bug before libstdc++4.6 (2011). 00031 // https://bugs.llvm.org/show_bug.cgi?id=13364 00032 #if defined(__GLIBCXX__) 00033 namespace std { class type_info; } 00034 #endif 00035 #include <string> 00036 00037 #endif // __STD_STRING_H__
1.6.1