Tru64 fixes

parent 5f0e117a
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment