diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-04-12 23:38:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-12 17:38:26 -0400 |
commit | 2eafbf2b98e56ef992ba0ea47886e97c9567886e (patch) | |
tree | 6a4ed3781d40cbdbc100d967fa7ef55dace0322a /core/lib.rs | |
parent | 73b7bd92e5c9b7f03aee11808fdcb72f95348d72 (diff) |
perf(core/ops): avoid allocs when returning primitives (#10149)
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs index b49de3b7b..bc9d50e3f 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -5,6 +5,7 @@ mod bindings; pub mod error; mod flags; mod gotham_state; +mod minvalue; mod module_specifier; mod modules; mod normalize_path; |