Sha256: c01d207c65dd7598170d314f82bab4ea1c0753dfc36999aa1a342c5ee957d949
Contents?: true
Size: 629 Bytes
Versions: 19
Compression:
Stored size: 629 Bytes
Contents
module Nokogiri module LibXML # :nodoc: class XmlSyntaxError < FFI::ManagedStruct # :nodoc: layout( :domain, :int, :code, :int, :message, :string, :level, :int, :file, :string, :line, :int, :str1, :string, :str2, :string, :str3, :string, :int1, :int, :int2, :int, :ctxt, :pointer, :node, :pointer ) def self.allocate LibXML.calloc(1, LibXML::XmlSyntaxError.size) end def self.release(ptr) LibXML.free(ptr) end end end end
Version data entries
19 entries across 19 versions & 2 rubygems