Bkpt* -> Breakpoint*

This commit is contained in:
losfair
2019-07-04 01:45:06 +08:00
parent 7f28a4dbef
commit f32b22d571
6 changed files with 18 additions and 18 deletions

View File

@ -9,7 +9,7 @@ use crate::{
use crate::{
cache::{Artifact, Error as CacheError},
codegen::BkptMap,
codegen::BreakpointMap,
module::ModuleInfo,
sys::Memory,
};
@ -90,7 +90,7 @@ pub trait RunnableModule: Send + Sync {
None
}
fn get_breakpoints(&self) -> Option<BkptMap> {
fn get_breakpoints(&self) -> Option<BreakpointMap> {
None
}