removed sizeof(casEventMask::mask) for MSVISC++

This commit is contained in:
Jeff Hill
1996-09-04 20:20:44 +00:00
parent 27b0c05bcf
commit 5311ba4c15
+4 -1
View File
@@ -29,6 +29,9 @@
*
* History
* $Log$
* Revision 1.1.1.1 1996/06/20 00:28:16 jhill
* ca server installation
*
*
*/
@@ -91,7 +94,7 @@ inline casEventMask casEventRegistry::maskAllocator()
{
casEventMask evMask;
if (this->allocator>=CHAR_BIT*sizeof(casEventMask::mask)) {
if (this->allocator>=CHAR_BIT*sizeof(evMask.mask)) {
return evMask;
}
evMask.mask = 1u<<(this->allocator++);