Skip to content

Commit

Permalink
Merge pull request #607 from fortanix/nr/fix-build-issues
Browse files Browse the repository at this point in the history
Changing the type of Unverified{} from struct to enum
  • Loading branch information
NirjharRoyiitk authored May 14, 2024
2 parents 092e963 + 408b058 commit a2f10f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intel-sgx/ias/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ pub struct VerifiedSig {}
impl VerificationType for VerifiedSig {}

#[derive(Clone, Debug, Eq, PartialEq, Hash)]
pub(crate) struct Unverified {}
pub enum Unverified {}
impl VerificationType for Unverified {}

trait SafeToDeserializeInto {}
Expand Down

0 comments on commit a2f10f6

Please sign in to comment.