diff options
author | kyren <kerriganw@gmail.com> | 2017-12-04 01:04:12 -0500 |
---|---|---|
committer | kyren <kerriganw@gmail.com> | 2017-12-04 01:04:12 -0500 |
commit | 0c644e71369893d49f8d3e0214dcbe3774207bcf (patch) | |
tree | baddda6a8a0f170348cdfb45f300fc2cabb2d5b7 /src/thread.rs | |
parent | a44b6b5170829599dd1e12ec5dc21923cf2f078b (diff) | |
download | mlua-0c644e71369893d49f8d3e0214dcbe3774207bcf.zip |
more reorganization in an attempt to shrink the size of lua.rs
Diffstat (limited to 'src/thread.rs')
-rw-r--r-- | src/thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.rs b/src/thread.rs index d784865..4f31019 100644 --- a/src/thread.rs +++ b/src/thread.rs @@ -4,7 +4,7 @@ use ffi; use error::*; use util::*; use types::LuaRef; -use lua::{FromLuaMulti, MultiValue, ToLuaMulti}; +use value::{FromLuaMulti, MultiValue, ToLuaMulti}; /// Status of a Lua thread (or coroutine). #[derive(Debug, Copy, Clone, Eq, PartialEq)] |