mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Use unsigned int for bitfiddling (fixes unused variables warnings on gcc).
This commit is contained in:
parent
30cec3e280
commit
9c8fe15d28
@ -1236,7 +1236,7 @@ void Rim3dView::updateDisplayModelVisibility()
|
||||
|
||||
// Initialize the mask to show everything except the the bits controlled here
|
||||
unsigned int mask = 0xffffffff & ~uintSurfaceBit & ~uintFaultBit & ~uintMeshSurfaceBit & ~uintMeshFaultBit &
|
||||
~intersectionCellFaceBit & ~intersectionCellMeshBit & ~intersectionFaultMeshBit;
|
||||
~uintIntersectionCellFaceBit & ~uintIntersectionCellMeshBit & ~uintIntersectionFaultMeshBit;
|
||||
|
||||
// Then turn the appropriate bits on according to the user settings
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user