We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
target_arch = "asmjs"
1 parent 87ada34 commit 7614b66Copy full SHA for 7614b66
examples3d/all_examples3_wasm.rs
@@ -51,7 +51,7 @@ fn demo_name_from_command_line() -> Option<String> {
51
None
52
}
53
54
-#[cfg(any(target_arch = "wasm32", target_arch = "asmjs"))]
+#[cfg(target_arch = "wasm32")]
55
fn demo_name_from_url() -> Option<String> {
56
57
// let window = stdweb::web::window();
@@ -63,7 +63,7 @@ fn demo_name_from_url() -> Option<String> {
63
// }
64
65
66
-#[cfg(not(any(target_arch = "wasm32", target_arch = "asmjs")))]
+#[cfg(not(target_arch = "wasm32"))]
67
68
69
0 commit comments