We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4ba9d0 commit 3495165Copy full SHA for 3495165
1 file changed
libcc2rs/src/va_args.rs
@@ -51,10 +51,6 @@ pub struct VaList<'a> {
51
}
52
53
impl<'a> VaList<'a> {
54
- pub fn empty() -> Self {
55
- VaList { args: &[], pos: 0 }
56
- }
57
-
58
pub fn new(args: &'a [VaArg]) -> Self {
59
VaList { args, pos: 0 }
60
0 commit comments