Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 522422
Collapse All | Expand All

(-)boost_1_52_0.old/libs/locale/src/icu/formatter.cpp (-1 / +1 lines)
Lines 58-64 Link Here
58
            virtual string_type format(int64_t value,size_t &code_points) const
58
            virtual string_type format(int64_t value,size_t &code_points) const
59
            {
59
            {
60
                icu::UnicodeString tmp;
60
                icu::UnicodeString tmp;
61
                icu_fmt_->format(value,tmp);
61
                icu_fmt_->format(::int64_t(value),tmp);
62
                code_points=tmp.countChar32();
62
                code_points=tmp.countChar32();
63
                return cvt_.std(tmp);
63
                return cvt_.std(tmp);
64
            }
64
            }

Return to bug 522422