Commit 1237a310 authored by unknown's avatar unknown

Tru64 fixes

parent 2300e8b2
...@@ -203,13 +203,13 @@ BaseString::empty() const ...@@ -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
......
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