Skip to content

Commit

Permalink
fixing compilation error on macos aarch64 (bevyengine#1905)
Browse files Browse the repository at this point in the history
just so
  • Loading branch information
bg committed Apr 14, 2021
1 parent a137df7 commit 55d6c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_render/src/shader/shader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub enum ShaderError {

#[cfg(any(target_os = "ios", all(target_arch = "aarch64", target_os = "macos")))]
/// shaderc error.
#[error("shaderc error: {}")]
#[error("shaderc error: {0}")]
ShaderC(#[from] shaderc::Error),

#[cfg(any(target_os = "ios", all(target_arch = "aarch64", target_os = "macos")))]
Expand Down

0 comments on commit 55d6c2c

Please sign in to comment.