Skip to content

Commit 062a0c2

Browse files
committed
do not mix pimpl() and impl for no reason
1 parent 53ebfd3 commit 062a0c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/task.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@ void Task::enableIntrospection(bool enable) {
218218
impl->introspection_.reset(new Introspection(impl));
219219
else if (!enable && impl->introspection_) {
220220
// reset introspection instance of all stages
221-
pimpl()->setIntrospection(nullptr);
222-
pimpl()->traverseStages(
221+
impl->setIntrospection(nullptr);
222+
impl->traverseStages(
223223
[](Stage& stage, int /*depth*/) {
224224
stage.pimpl()->setIntrospection(nullptr);
225225
return true;

0 commit comments

Comments
 (0)