|
Boost : |
Subject: [boost] [locale] Premission to merge clang bugfix changeset to release tree
From: Artyom Beilis (artyomtnk_at_[hidden])
Date: 2011-11-01 04:43:32
Hello,
I'd like to ask a permission to merge a changeset 75174 from trunk to release tree.
It is a fix of build issue under clang-2.9 and clang-3.0.
See: https://svn.boost.org/trac/boost/changeset/75174
The changeset itself:
-------------------------
Index: /trunk/libs/locale/src/posix/codecvt.cpp
===================================================================
--- /trunk/libs/locale/src/posix/codecvt.cpp (revision 73382)
+++ /trunk/libs/locale/src/posix/codecvt.cpp (revision 75174)
@@ -135,5 +135,5 @@
// maybe illegal or may be double byte
- char inseq[3] = {seq0 , begin[1], 0};
+ char inseq[3] = { static_cast<char>(seq0) , begin[1], 0};
char *inbuf = inseq;
size_t insize = 3;
-------------------------
It solves build issues as I can see at trunk tests.
Thanks,
Artyom Beilis
--------------
CppCMS - C++ Web Framework: http://cppcms.sf.net/
CppDB - C++ SQL Connectivity: http://cppcms.sf.net/sql/cppdb/
Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk