Skip to content

Commit 6f8c006

Browse files
committed
fix: command structs now public
1 parent cf4914e commit 6f8c006

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • stack-control/src/bytecode/command

stack-control/src/bytecode/command/core.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ macro_rules! define_commands {
5252
}};
5353

5454
(defenition ([$name:ident $key:tt [$($alias:expr),*] $others:tt] $stack:ident $defenition:block)) => {
55-
struct $name {}
55+
pub struct $name {}
5656
impl $crate::bytecode::command::CommandExecutable for $name {
5757
fn execute(&self, $stack: &mut $crate::runtime::stack::Stack) -> Result<(), $crate::bytecode::command::RuntimeException> $defenition
5858

0 commit comments

Comments
 (0)