summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-10-01 03:39:03 +0200
committerMitya Selivanov <automainint@guattari.tech>2024-10-01 03:39:03 +0200
commitd1de2ec36df73e5419fd0b5d38d680f4c1709b36 (patch)
tree9df77f6cabbc893702f22ebfe8899acc6e4918d1
parent8bd6422067848b7c029a67ef64ba310601ce6033 (diff)
downloadastar.rs-dev.zip
More readable script headerHEADdev
-rwxr-xr-xastar.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/astar.rs b/astar.rs
index 1742dbf..9e847d5 100755
--- a/astar.rs
+++ b/astar.rs
@@ -1,4 +1,5 @@
-#[allow(non_camel_case_types)] /*
+#[allow(unused_attributes)]
+#[allow()] /*
#/ ================================================================
#/
#/ astar.rs
@@ -20,6 +21,7 @@ rustc --test -o $BIN.tmp $SRC && ./$BIN.tmp $@ && rm $BIN.tmp
exit $? # */
// ================================================================
+#[allow(non_camel_case_types)]
mod astar_internal {
use std::{ops::Add, fmt::Debug};