Merge remote-tracking branch 'origin/master' into no_std

This commit is contained in:
Dan Gohman
2018-04-18 17:17:43 -07:00
92 changed files with 508 additions and 295 deletions

View File

@@ -45,7 +45,7 @@ pub enum CtonError {
pub type CtonResult = Result<(), CtonError>;
impl From<verifier::Error> for CtonError {
fn from(e: verifier::Error) -> CtonError {
fn from(e: verifier::Error) -> Self {
CtonError::Verifier(e)
}
}