Skip to content

Commit

Permalink
Merge pull request #8 from iMplode-nZ/main
Browse files Browse the repository at this point in the history
Unbreak the loop macro since rust doesn't scope macros in modules.
  • Loading branch information
Mike-Leo-Smith authored Sep 16, 2023
2 parents 3601801 + 6a60997 commit 6fb0132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion luisa_compute/src/lang/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2614,7 +2614,7 @@ macro_rules! while_ {
#[macro_export]
macro_rules! loop_ {
($body:block) => {
$crate::lang::while_!(const_(true), $body)
$crate::while_!(const_(true), $body)
};
}
pub trait ForLoopRange {
Expand Down

0 comments on commit 6fb0132

Please sign in to comment.