Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
dcdb
dcdb
Commits
e8979586
Commit
e8979586
authored
Oct 28, 2019
by
Carla Guillen
Browse files
Removing unnecessary operator= line.
parent
b9ec86ab
Changes
1
Show whitespace changes
Inline
Side-by-side
analytics/operators/persystsql/PerSystSqlOperator.cpp
View file @
e8979586
...
...
@@ -59,12 +59,11 @@ PerSystSqlOperator::~PerSystSqlOperator() {
}
PerSystSqlOperator
::
PerSystSqlOperator
(
const
PerSystSqlOperator
&
other
)
:
OperatorTemplate
(
other
.
_name
),
JobOperatorTemplate
(
other
.
_name
){
PerSystSqlOperator
::
PerSystSqlOperator
(
const
PerSystSqlOperator
&
other
)
:
OperatorTemplate
(
other
.
_name
),
JobOperatorTemplate
<
AggregatorSensorBase
>
(
other
.
_name
){
copy
(
other
);
}
PerSystSqlOperator
&
PerSystSqlOperator
::
operator
=
(
const
PerSystSqlOperator
&
other
){
OperatorTemplate
::
operator
=
(
other
);
JobOperatorTemplate
::
operator
=
(
other
);
copy
(
other
);
return
*
this
;
...
...
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