mirror of
https://github.com/lightpanda-io/browser.git
synced 2025-12-16 16:28:58 +00:00
use _ name for unused self args
Co-authored-by: Francis Bouvier <francis@lightpanda.io>
This commit is contained in:
@@ -14,7 +14,7 @@ pub const DOMImplementation = struct {
|
|||||||
pub const mem_guarantied = true;
|
pub const mem_guarantied = true;
|
||||||
|
|
||||||
pub fn _createDocumentType(
|
pub fn _createDocumentType(
|
||||||
self: *DOMImplementation,
|
_: *DOMImplementation,
|
||||||
allocator: std.mem.Allocator,
|
allocator: std.mem.Allocator,
|
||||||
qname: []const u8,
|
qname: []const u8,
|
||||||
publicId: []const u8,
|
publicId: []const u8,
|
||||||
@@ -35,7 +35,7 @@ pub const DOMImplementation = struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn _createDocument(
|
pub fn _createDocument(
|
||||||
self: *DOMImplementation,
|
_: *DOMImplementation,
|
||||||
allocator: std.mem.Allocator,
|
allocator: std.mem.Allocator,
|
||||||
namespace: ?[]const u8,
|
namespace: ?[]const u8,
|
||||||
qname: ?[]const u8,
|
qname: ?[]const u8,
|
||||||
|
|||||||
Reference in New Issue
Block a user