Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
4f35a592
Commit
4f35a592
authored
Jun 14, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #8912 from alalek:fix_cxx11_mac_flann
parents
9b902ade
cc525233
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
any.h
modules/flann/include/opencv2/flann/any.h
+6
-0
No files found.
modules/flann/include/opencv2/flann/any.h
View file @
4f35a592
...
@@ -246,6 +246,12 @@ public:
...
@@ -246,6 +246,12 @@ public:
return
assign
(
x
);
return
assign
(
x
);
}
}
/// Assignment operator. Template-based version above doesn't work as expected. We need regular assignment operator here.
any
&
operator
=
(
const
any
&
x
)
{
return
assign
(
x
);
}
/// Assignment operator, specialed for literal strings.
/// Assignment operator, specialed for literal strings.
/// They have types like const char [6] which don't work as expected.
/// They have types like const char [6] which don't work as expected.
any
&
operator
=
(
const
char
*
x
)
any
&
operator
=
(
const
char
*
x
)
...
...
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