mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Compile fixes for irix
This commit is contained in:
@ -488,14 +488,14 @@ template <unsigned size>
|
||||
inline void
|
||||
BitmaskPOD<size>::assign(const typename BitmaskPOD<size>::Data & src)
|
||||
{
|
||||
assign(rep.data, src.data);
|
||||
BitmaskPOD<size>::assign(rep.data, src.data);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
inline void
|
||||
BitmaskPOD<size>::assign(const BitmaskPOD<size> & src)
|
||||
{
|
||||
assign(rep.data, src.rep.data);
|
||||
BitmaskPOD<size>::assign(rep.data, src.rep.data);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -523,7 +523,7 @@ template <unsigned size>
|
||||
inline bool
|
||||
BitmaskPOD<size>::get(unsigned n) const
|
||||
{
|
||||
return get(rep.data, n);
|
||||
return BitmaskPOD<size>::get(rep.data, n);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -537,7 +537,7 @@ template <unsigned size>
|
||||
inline void
|
||||
BitmaskPOD<size>::set(unsigned n, bool value)
|
||||
{
|
||||
set(rep.data, n, value);
|
||||
BitmaskPOD<size>::set(rep.data, n, value);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -551,7 +551,7 @@ template <unsigned size>
|
||||
inline void
|
||||
BitmaskPOD<size>::set(unsigned n)
|
||||
{
|
||||
set(rep.data, n);
|
||||
BitmaskPOD<size>::set(rep.data, n);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -565,7 +565,7 @@ template <unsigned size>
|
||||
inline void
|
||||
BitmaskPOD<size>::set()
|
||||
{
|
||||
set(rep.data);
|
||||
BitmaskPOD<size>::set(rep.data);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -579,7 +579,7 @@ template <unsigned size>
|
||||
inline void
|
||||
BitmaskPOD<size>::clear(unsigned n)
|
||||
{
|
||||
clear(rep.data, n);
|
||||
BitmaskPOD<size>::clear(rep.data, n);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -593,7 +593,7 @@ template <unsigned size>
|
||||
inline void
|
||||
BitmaskPOD<size>::clear()
|
||||
{
|
||||
clear(rep.data);
|
||||
BitmaskPOD<size>::clear(rep.data);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -607,7 +607,7 @@ template <unsigned size>
|
||||
inline bool
|
||||
BitmaskPOD<size>::isclear() const
|
||||
{
|
||||
return isclear(rep.data);
|
||||
return BitmaskPOD<size>::isclear(rep.data);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -621,7 +621,7 @@ template <unsigned size>
|
||||
inline unsigned
|
||||
BitmaskPOD<size>::count() const
|
||||
{
|
||||
return count(rep.data);
|
||||
return BitmaskPOD<size>::count(rep.data);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -635,7 +635,7 @@ template <unsigned size>
|
||||
inline unsigned
|
||||
BitmaskPOD<size>::find(unsigned n) const
|
||||
{
|
||||
return find(rep.data, n);
|
||||
return BitmaskPOD<size>::find(rep.data, n);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -649,7 +649,7 @@ template <unsigned size>
|
||||
inline bool
|
||||
BitmaskPOD<size>::equal(const BitmaskPOD<size>& mask2) const
|
||||
{
|
||||
return equal(rep.data, mask2.rep.data);
|
||||
return BitmaskPOD<size>::equal(rep.data, mask2.rep.data);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -663,7 +663,7 @@ template <unsigned size>
|
||||
inline BitmaskPOD<size>&
|
||||
BitmaskPOD<size>::bitOR(const BitmaskPOD<size>& mask2)
|
||||
{
|
||||
bitOR(rep.data, mask2.rep.data);
|
||||
BitmaskPOD<size>::bitOR(rep.data, mask2.rep.data);
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -678,7 +678,7 @@ template <unsigned size>
|
||||
inline BitmaskPOD<size>&
|
||||
BitmaskPOD<size>::bitAND(const BitmaskPOD<size>& mask2)
|
||||
{
|
||||
bitAND(rep.data, mask2.rep.data);
|
||||
BitmaskPOD<size>::bitAND(rep.data, mask2.rep.data);
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -693,7 +693,7 @@ template <unsigned size>
|
||||
inline BitmaskPOD<size>&
|
||||
BitmaskPOD<size>::bitANDC(const BitmaskPOD<size>& mask2)
|
||||
{
|
||||
bitANDC(rep.data, mask2.rep.data);
|
||||
BitmaskPOD<size>::bitANDC(rep.data, mask2.rep.data);
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -708,7 +708,7 @@ template <unsigned size>
|
||||
inline BitmaskPOD<size>&
|
||||
BitmaskPOD<size>::bitXOR(const BitmaskPOD<size>& mask2)
|
||||
{
|
||||
bitXOR(rep.data, mask2.rep.data);
|
||||
BitmaskPOD<size>::bitXOR(rep.data, mask2.rep.data);
|
||||
return *this;
|
||||
}
|
||||
|
||||
@ -723,7 +723,7 @@ template <unsigned size>
|
||||
inline char *
|
||||
BitmaskPOD<size>::getText(char* buf) const
|
||||
{
|
||||
return getText(rep.data, buf);
|
||||
return BitmaskPOD<size>::getText(rep.data, buf);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -737,7 +737,7 @@ template <unsigned size>
|
||||
inline bool
|
||||
BitmaskPOD<size>::contains(BitmaskPOD<size> that)
|
||||
{
|
||||
return contains(this->rep.data, that.rep.data);
|
||||
return BitmaskPOD<size>::contains(this->rep.data, that.rep.data);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
@ -751,7 +751,7 @@ template <unsigned size>
|
||||
inline bool
|
||||
BitmaskPOD<size>::overlaps(BitmaskPOD<size> that)
|
||||
{
|
||||
return overlaps(this->rep.data, that.rep.data);
|
||||
return BitmaskPOD<size>::overlaps(this->rep.data, that.rep.data);
|
||||
}
|
||||
|
||||
template <unsigned size>
|
||||
|
Reference in New Issue
Block a user