Skip to content

Commit

Permalink
forgor this
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Apr 27, 2024
1 parent 8998c5a commit 4931357
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions slinky/src/linker_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,10 +417,7 @@ impl<'a> LinkerWriter<'a> {
""
};

let mut linker_symbols_sorted: Vec<_> = self.linker_symbols.iter().collect();
linker_symbols_sorted.sort();

for sym in linker_symbols_sorted {
for sym in &self.linker_symbols {
ret += &format!(
"extern {} {}{};\n",
self.settings.symbols_header_type, sym, arr_suffix
Expand Down

0 comments on commit 4931357

Please sign in to comment.