Tru64 fixes

This commit is contained in:
tomas@poseidon.bredbandsbolaget.se 2004-06-17 17:38:05 +00:00
parent 5f0e117a08
commit 48a47a0ea6

View file

@ -203,13 +203,13 @@ BaseString::empty() const
inline void
BaseString::ndb_toupper() {
for(unsigned i = 0; i < length(); i++)
m_chr[i] = ::toupper(m_chr[i]);
m_chr[i] = toupper(m_chr[i]);
}
inline void
BaseString::ndb_tolower() {
for(unsigned i = 0; i < length(); i++)
m_chr[i] = ::tolower(m_chr[i]);
m_chr[i] = tolower(m_chr[i]);
}
inline bool