Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Matchinfo lifetime #1225

Merged
merged 1 commit into from
Nov 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 1 addition & 13 deletions glib/Gir.toml
Original file line number Diff line number Diff line change
Expand Up @@ -718,19 +718,7 @@ status = "generate"

[[object]]
name = "GLib.MatchInfo"
status = "generate"
[[object.function]]
name = "expand_references"
# impl IntoGStr for parameters instead of &str
manual = true
[[object.function]]
name = "fetch_named"
# impl IntoGStr for parameters instead of &str
manual = true
[[object.function]]
name = "fetch_named_pos"
# impl IntoGStr for parameters instead of &str
manual = true
status = "manual"

[[object]]
name = "GLib.Regex"
Expand Down
91 changes: 0 additions & 91 deletions glib/src/auto/match_info.rs

This file was deleted.

3 changes: 0 additions & 3 deletions glib/src/auto/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ pub use self::main_loop::MainLoop;
mod markup_parse_context;
pub use self::markup_parse_context::MarkupParseContext;

mod match_info;
pub use self::match_info::MatchInfo;

mod regex;
pub use self::regex::Regex;

Expand Down
1 change: 1 addition & 0 deletions glib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ pub use self::property::*;
mod quark;
pub use self::quark::Quark;
pub mod match_info;
pub use self::match_info::MatchInfo;
pub mod regex;
#[macro_use]
mod log;
Expand Down
Loading
Loading