Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OpenFlipper
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenFlipper-Free
OpenFlipper
Commits
feb9f5d2
Commit
feb9f5d2
authored
5 years ago
by
Martin Heistermann
Browse files
Options
Downloads
Patches
Plain Diff
BSPImplT: avoid std::binary_function,it is deprecated in c++11 and removed in 17
parent
8c473723
No related branches found
No related tags found
1 merge request
!169
BSPImplT: avoid std::binary_function,it is deprecated in c++11 and removed in 17
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
libs_required/ACG/Geometry/bsp/BSPImplT.hh
+1
-1
1 addition, 1 deletion
libs_required/ACG/Geometry/bsp/BSPImplT.hh
with
1 addition
and
1 deletion
libs_required/ACG/Geometry/bsp/BSPImplT.hh
+
1
−
1
View file @
feb9f5d2
...
...
@@ -200,7 +200,7 @@ private: //---------------------------------------------------------------------
void
_intersect_ball
(
const
Node
&
_node
,
const
Point
&
_c
,
Scalar
_r
,
Callback
_callback
)
const
;
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
)
{
return
(
fabs
(
left
.
second
)
<
fabs
(
right
.
second
));
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment