Introduce hpb::Arena stub

PiperOrigin-RevId: 671509864
pull/18141/head
Hong Shin 6 months ago committed by Copybara-Service
parent 8387a0fd9d
commit 08f324f199
  1. 9
      hpb/BUILD
  2. 10
      hpb/arena.h

@ -170,3 +170,12 @@ cc_library(
"//upb:mini_table",
],
)
cc_library(
name = "arena",
hdrs = ["arena.h"],
visibility = ["//visibility:public"],
deps = [
"//upb:mem",
],
)

@ -0,0 +1,10 @@
#ifndef GOOGLE_PROTOBUF_HPB_ARENA_H__
#define GOOGLE_PROTOBUF_HPB_ARENA_H__
#include "upb/mem/arena.hpp"
namespace hpb {
using Arena = upb::Arena;
}
#endif // GOOGLE_PROTOBUF_HPB_ARENA_H__
Loading…
Cancel
Save