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
sds
HEP
HEPnOS
Commits
5957aee7
Commit
5957aee7
authored
Mar 19, 2020
by
Matthieu Dorier
Browse files
enabled use of move constructor and move assignment operator in WriteBatch
parent
0f684f7e
Changes
1
Show whitespace changes
Inline
Side-by-side
include/hepnos/WriteBatch.hpp
View file @
5957aee7
...
...
@@ -100,12 +100,12 @@ class WriteBatch {
/**
* @brief Deleted copy-assignment operator.
*/
WriteBatch
(
WriteBatch
&&
)
=
de
lete
;
WriteBatch
(
WriteBatch
&&
)
=
de
fault
;
/**
* @brief Deleted move-assignment operator.
*/
WriteBatch
&
operator
=
(
WriteBatch
&&
)
=
de
lete
;
WriteBatch
&
operator
=
(
WriteBatch
&&
)
=
de
fault
;
/**
* @brief Flush the content of the WriteBatch, blocking until
...
...
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