mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-26 03:11:59 +00:00
* operator==(docstring const & l, char const * r): optimized a bit because it showed a lot in profile.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17897 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
e841d41a92
commit
1757d1b1cd
@ -148,15 +148,16 @@ docstring const normalize_kc(docstring const & s)
|
|||||||
|
|
||||||
bool operator==(lyx::docstring const & l, char const * r)
|
bool operator==(lyx::docstring const & l, char const * r)
|
||||||
{
|
{
|
||||||
int const len = l.length();
|
lyx::docstring::const_iterator it = l.begin();
|
||||||
for (int i = 0; i < len; ++i) {
|
lyx::docstring::const_iterator end = l.end();
|
||||||
BOOST_ASSERT(static_cast<unsigned char>(r[i]) < 0x80);
|
for (; it != end; ++it, ++r) {
|
||||||
if (!r[i])
|
BOOST_ASSERT(static_cast<unsigned char>(*r) < 0x80);
|
||||||
|
if (!*r)
|
||||||
return false;
|
return false;
|
||||||
if (l[i] != lyx::docstring::value_type(r[i]))
|
if (*it != static_cast<lyx::docstring::value_type>(*r))
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return r[len] == '\0';
|
return *r == '\0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user