Skip to content
Open
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
8 changes: 4 additions & 4 deletions src/protobuf/2.1/vector_tile_pb.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ struct Tile_Value
end #struct Tile_Value
const __wtype_Tile_Value = Dict(:sint_value => :sint64)
ProtoBuf.meta(t::Type{Tile_Value}) = ProtoBuf.meta(t, ProtoBuf.DEF_REQ, ProtoBuf.DEF_FNUM, ProtoBuf.DEF_VAL, true, ProtoBuf.DEF_PACK, __wtype_Tile_Value, ProtoBuf.DEF_ONEOFS, ProtoBuf.DEF_ONEOF_NAMES)
Base.hash(v::Tile_Value) = ProtoBuf.protohash(v)
Base.hash(v::Tile_Value, h::UInt) = hash(ProtoBuf.protohash(v), h)
Base.isequal(v1::Tile_Value, v2::Tile_Value) = ProtoBuf.protoisequal(v1, v2)
Base.==(v1::Tile_Value, v2::Tile_Value) = ProtoBuf.protoeq(v1, v2)

Expand All @@ -38,7 +38,7 @@ end #struct Tile_Feature
const __val_Tile_Feature = Dict(:id => 0, :_type => Tile_GeomType.UNKNOWN)
const __pack_Tile_Feature = Symbol[:tags,:geometry]
ProtoBuf.meta(t::Type{Tile_Feature}) = ProtoBuf.meta(t, ProtoBuf.DEF_REQ, ProtoBuf.DEF_FNUM, __val_Tile_Feature, true, __pack_Tile_Feature, ProtoBuf.DEF_WTYPES, ProtoBuf.DEF_ONEOFS, ProtoBuf.DEF_ONEOF_NAMES)
Base.hash(v::Tile_Feature) = ProtoBuf.protohash(v)
Base.hash(v::Tile_Feature, h::UInt) = hash(ProtoBuf.protohash(v), h)
Base.isequal(v1::Tile_Feature, v2::Tile_Feature) = ProtoBuf.protoisequal(v1, v2)
Base.==(v1::Tile_Feature, v2::Tile_Feature) = ProtoBuf.protoeq(v1, v2)

Expand All @@ -55,7 +55,7 @@ const __req_Tile_Layer = Symbol[:version,:name]
const __val_Tile_Layer = Dict(:version => 1, :extent => 4096)
const __fnum_Tile_Layer = Int[15,1,2,3,4,5]
ProtoBuf.meta(t::Type{Tile_Layer}) = ProtoBuf.meta(t, __req_Tile_Layer, __fnum_Tile_Layer, __val_Tile_Layer, true, ProtoBuf.DEF_PACK, ProtoBuf.DEF_WTYPES, ProtoBuf.DEF_ONEOFS, ProtoBuf.DEF_ONEOF_NAMES)
Base.hash(v::Tile_Layer) = ProtoBuf.protohash(v)
Base.hash(v::Tile_Layer, h::UInt) = hash(ProtoBuf.protohash(v), h)
Base.isequal(v1::Tile_Layer, v2::Tile_Layer) = ProtoBuf.protoisequal(v1, v2)
Base.==(v1::Tile_Layer, v2::Tile_Layer) = ProtoBuf.protoeq(v1, v2)

Expand All @@ -65,6 +65,6 @@ struct Tile
end #struct Tile
const __fnum_Tile = Int[3]
ProtoBuf.meta(t::Type{Tile}) = ProtoBuf.meta(t, ProtoBuf.DEF_REQ, __fnum_Tile, ProtoBuf.DEF_VAL, true, ProtoBuf.DEF_PACK, ProtoBuf.DEF_WTYPES, ProtoBuf.DEF_ONEOFS, ProtoBuf.DEF_ONEOF_NAMES)
Base.hash(v::Tile) = ProtoBuf.protohash(v)
Base.hash(v::Tile, h::UInt) = hash(ProtoBuf.protohash(v), h)
Base.isequal(v1::Tile, v2::Tile) = ProtoBuf.protoisequal(v1, v2)
Base.==(v1::Tile, v2::Tile) = ProtoBuf.protoeq(v1, v2)
Loading