Skip to content

Commit fefc16b

Browse files
committed
Migrate lopcodes
1 parent 03f9496 commit fefc16b

File tree

4 files changed

+262
-272
lines changed

4 files changed

+262
-272
lines changed

build/build.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ fn main() {
2121
.file("build/lmathlib.c")
2222
.file("build/loadlib.c")
2323
.file("build/lobject.c")
24-
.file("build/lopcodes.c")
2524
.file("build/loslib.c")
2625
.file("build/lparser.c")
2726
.file("build/lstate.c")

build/lopcodes.c

Lines changed: 0 additions & 124 deletions
This file was deleted.

src/lib.rs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1-
#![allow(non_camel_case_types, non_snake_case, dead_code)]
1+
#![allow(
2+
non_camel_case_types,
3+
non_snake_case,
4+
dead_code,
5+
non_upper_case_globals
6+
)]
27

38
pub(crate) mod ldo;
49
pub(crate) mod lfunc;
510
pub(crate) mod llimits;
611
pub(crate) mod lmem;
712
pub(crate) mod lobject;
13+
pub(crate) mod lopcodes;
814
pub(crate) mod lstate;
915
pub(crate) mod ltemp;
1016
pub(crate) mod ltm;

0 commit comments

Comments
 (0)