mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
Tru64 fixes
This commit is contained in:
parent
5f0e117a08
commit
48a47a0ea6
1 changed files with 2 additions and 2 deletions
|
@ -203,13 +203,13 @@ BaseString::empty() const
|
||||||
inline void
|
inline void
|
||||||
BaseString::ndb_toupper() {
|
BaseString::ndb_toupper() {
|
||||||
for(unsigned i = 0; i < length(); i++)
|
for(unsigned i = 0; i < length(); i++)
|
||||||
m_chr[i] = ::toupper(m_chr[i]);
|
m_chr[i] = toupper(m_chr[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void
|
inline void
|
||||||
BaseString::ndb_tolower() {
|
BaseString::ndb_tolower() {
|
||||||
for(unsigned i = 0; i < length(); i++)
|
for(unsigned i = 0; i < length(); i++)
|
||||||
m_chr[i] = ::tolower(m_chr[i]);
|
m_chr[i] = tolower(m_chr[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool
|
inline bool
|
||||||
|
|
Loading…
Add table
Reference in a new issue