Skip to content

Commit

Permalink
Fix QNX build (#2199)
Browse files Browse the repository at this point in the history
- fixes the lack of spec_ base class member visibility inside Resize operator

Signed-off-by: Janusz Lisiecki <[email protected]>
  • Loading branch information
JanuszL authored and klecki committed Aug 10, 2020
1 parent aaf2d20 commit f1ddd62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dali/operators/image/resize/resize.cc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ template<typename Backend>
Resize<Backend>::Resize(const OpSpec &spec)
: Operator<Backend>(spec)
, ResizeBase<Backend>(spec) {
save_attrs_ = spec_.HasArgument("save_attrs");
save_attrs_ = this->spec_.HasArgument("save_attrs");
resample_params_.resize(num_threads_);
InitializeBackend();
}
Expand Down

0 comments on commit f1ddd62

Please sign in to comment.