Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
HexEx
libHexEx
Commits
23f0be59
Commit
23f0be59
authored
Jun 27, 2019
by
Martin Heistermann
Browse files
Avoid using deprecated OVM functions.
parent
4921bd66
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/HexExtractor.cc
View file @
23f0be59
...
...
@@ -4472,7 +4472,7 @@ bool HexExtractor::isCellDegenerate(CellHandle ch)
++
isCellDegenerateCalls
;
return
cellTypes
[
ch
.
idx
()
]
==
Degenerate
;
return
cellTypes
[
ch
]
==
Degenerate
;
}
bool
HexExtractor
::
isCellFlipped
(
CellHandle
ch
)
...
...
@@ -4483,7 +4483,7 @@ bool HexExtractor::isCellFlipped(CellHandle ch)
++
isCellFlippedCalls
;
return
cellTypes
[
ch
.
idx
()
]
==
Flipped
;
return
cellTypes
[
ch
]
==
Flipped
;
}
bool
HexExtractor
::
isFaceDegenerate
(
HalfFaceHandle
hfh
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment