Skip to content

Commit

Permalink
xe: jit: ir: remove unneccessary method call
Browse files Browse the repository at this point in the history
  • Loading branch information
atkassen committed Jan 17, 2025
1 parent 29d8a22 commit c377734
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpu/intel/jit/ir/kernel_info.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class memory_storage_wrapper_t {

const memory_storage_t *get() const {
if (!ptr_) return nullptr;
return ptr_.get()->get();
return ptr_->get();
}

private:
Expand Down

0 comments on commit c377734

Please sign in to comment.