Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
4ea8488e
Commit
4ea8488e
authored
Jan 27, 2020
by
Martin Heistermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avoid deprecated/removed stl usage
parent
aae21659
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
libs_required/ACG/Geometry/bsp/BSPImplT.hh
libs_required/ACG/Geometry/bsp/BSPImplT.hh
+1
-1
No files found.
libs_required/ACG/Geometry/bsp/BSPImplT.hh
View file @
4ea8488e
...
@@ -200,7 +200,7 @@ private: //---------------------------------------------------------------------
...
@@ -200,7 +200,7 @@ private: //---------------------------------------------------------------------
void
_intersect_ball
(
const
Node
&
_node
,
const
Point
&
_c
,
Scalar
_r
,
Callback
_callback
)
const
;
void
_intersect_ball
(
const
Node
&
_node
,
const
Point
&
_c
,
Scalar
_r
,
Callback
_callback
)
const
;
template
<
typename
T
,
typename
U
>
template
<
typename
T
,
typename
U
>
struct
less_pair_second
:
public
std
::
binary_function
<
T
,
U
,
bool
>
{
struct
less_pair_second
{
bool
operator
()(
const
std
::
pair
<
T
,
U
>
&
left
,
const
std
::
pair
<
T
,
U
>
&
right
)
{
bool
operator
()(
const
std
::
pair
<
T
,
U
>
&
left
,
const
std
::
pair
<
T
,
U
>
&
right
)
{
return
(
fabs
(
left
.
second
)
<
fabs
(
right
.
second
));
return
(
fabs
(
left
.
second
)
<
fabs
(
right
.
second
));
}
}
...
...
Write
Preview
Markdown
is supported
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