Skip to content

Commit

Permalink
import
Browse files Browse the repository at this point in the history
  • Loading branch information
apfitzge committed Sep 16, 2024
1 parent 6299073 commit b7e4f86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/src/transaction_batch.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use {
crate::bank::Bank, solana_sdk::transaction::Result,
crate::bank::Bank, core::ops::Deref, solana_sdk::transaction::Result,
solana_svm_transaction::svm_message::SVMMessage,
};

Expand All @@ -8,7 +8,7 @@ pub enum OwnedOrBorrowed<'a, T> {
Borrowed(&'a [T]),
}

impl<T> core::ops::Deref for OwnedOrBorrowed<'_, T> {
impl<T> Deref for OwnedOrBorrowed<'_, T> {
type Target = [T];

fn deref(&self) -> &Self::Target {
Expand Down

0 comments on commit b7e4f86

Please sign in to comment.