remove single entrypoint

This commit is contained in:
Brendan Hansknecht 2024-10-07 16:58:50 -07:00
parent 3c232446d9
commit 5b8b781bad
No known key found for this signature in database
GPG key ID: A199D0660F95F948
4 changed files with 5 additions and 37 deletions

View file

@ -139,8 +139,7 @@ pub struct SingleEntryPoint<'a> {
#[derive(Debug, Clone, Copy)]
pub enum EntryPoint<'a> {
Single(SingleEntryPoint<'a>),
Multiple(&'a [SingleEntryPoint<'a>]),
Program(&'a [SingleEntryPoint<'a>]),
Expects { symbols: &'a [Symbol] },
}