From 39fda8e55beae7916fdc2096c568a442855338a6 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sun, 18 Oct 2015 18:11:49 +0100 Subject: [PATCH] Make sure std lib is invoked to catch shared lib miss-match. --- build/has_icu_test.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/build/has_icu_test.cpp b/build/has_icu_test.cpp index 518ac2ff..98166e49 100644 --- a/build/has_icu_test.cpp +++ b/build/has_icu_test.cpp @@ -23,6 +23,7 @@ int main() { UErrorCode err = U_ZERO_ERROR; UChar32 c = ::u_charFromName(U_UNICODE_CHAR_NAME, "GREEK SMALL LETTER ALPHA", &err); + std::cout << (int)c << std::endl; if(err) return err; U_NAMESPACE_QUALIFIER Locale l; boost::scoped_ptr p_col(U_NAMESPACE_QUALIFIER Collator::createInstance(l, err));