Fixup code to make sure all feature builds succeed.

This commit is contained in:
Stephen Chung
2020-03-14 20:06:40 +08:00
parent 973153e832
commit dd36f3387a
7 changed files with 30 additions and 12 deletions

View File

@@ -78,9 +78,12 @@ pub use call::FuncArgs;
pub use engine::Engine;
pub use error::{ParseError, ParseErrorType};
pub use fn_register::{RegisterDynamicFn, RegisterFn, RegisterResultFn};
pub use parser::{Position, AST, FLOAT, INT};
pub use parser::{Position, AST, INT};
pub use result::EvalAltResult;
pub use scope::{Scope, ScopeEntry, VariableType};
#[cfg(not(feature = "no_index"))]
pub use engine::Array;
#[cfg(not(feature = "no_float"))]
pub use parser::FLOAT;