From 4dfa744c6c9de221174e7b5f4e70b08722b138d2 Mon Sep 17 00:00:00 2001 From: Be Wilson Date: Fri, 21 Oct 2022 17:21:20 -0500 Subject: [PATCH] remove unused field of Library struct --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index d35ba10..8ee5c83 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -111,7 +111,6 @@ pub struct Library { pub defines: HashMap>, /// Version specified by .pc file's Version field pub version: String, - _priv: (), } /// Represents all reasons `pkg-config` might not succeed or be run at all. @@ -575,7 +574,6 @@ impl Library { framework_paths: Vec::new(), defines: HashMap::new(), version: String::new(), - _priv: (), } }