Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
medialibrary
Commits
89c29403
Commit
89c29403
authored
Jul 23, 2018
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SqliteQuery: Fix superfluous string copies
parent
49cbaec1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/database/SqliteQuery.h
src/database/SqliteQuery.h
+2
-2
No files found.
src/database/SqliteQuery.h
View file @
89c29403
...
...
@@ -43,8 +43,8 @@ public:
SqliteQuery
(
MediaLibraryPtr
ml
,
std
::
string
field
,
std
::
string
base
,
Params
&&
...
params
)
:
m_ml
(
ml
)
,
m_field
(
field
)
,
m_base
(
base
)
,
m_field
(
std
::
move
(
field
)
)
,
m_base
(
std
::
move
(
base
)
)
,
m_params
(
std
::
forward
<
Params
>
(
params
)...
)
,
m_count
(
0
)
,
m_hasCount
(
false
)
...
...
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