aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ext/upb-generated/google/protobuf/timestamp.upb.h')
-rw-r--r--src/core/ext/upb-generated/google/protobuf/timestamp.upb.h65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h b/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h
deleted file mode 100644
index a524eb5b6d..0000000000
--- a/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h
+++ /dev/null
@@ -1,65 +0,0 @@
-/* This file was generated by upbc (the upb compiler) from the input
- * file:
- *
- * google/protobuf/timestamp.proto
- *
- * Do not edit -- your changes will be discarded when the file is
- * regenerated. */
-
-#ifndef GOOGLE_PROTOBUF_TIMESTAMP_PROTO_UPB_H_
-#define GOOGLE_PROTOBUF_TIMESTAMP_PROTO_UPB_H_
-
-#include "upb/msg.h"
-
-#include "upb/decode.h"
-#include "upb/encode.h"
-#include "upb/port_def.inc"
-UPB_BEGIN_EXTERN_C
-
-struct google_protobuf_Timestamp;
-typedef struct google_protobuf_Timestamp google_protobuf_Timestamp;
-
-/* Enums */
-
-/* google.protobuf.Timestamp */
-
-extern const upb_msglayout google_protobuf_Timestamp_msginit;
-UPB_INLINE google_protobuf_Timestamp* google_protobuf_Timestamp_new(
- upb_arena* arena) {
- return upb_msg_new(&google_protobuf_Timestamp_msginit, arena);
-}
-UPB_INLINE google_protobuf_Timestamp* google_protobuf_Timestamp_parsenew(
- upb_stringview buf, upb_arena* arena) {
- google_protobuf_Timestamp* ret = google_protobuf_Timestamp_new(arena);
- return (ret && upb_decode(buf, ret, &google_protobuf_Timestamp_msginit))
- ? ret
- : NULL;
-}
-UPB_INLINE char* google_protobuf_Timestamp_serialize(
- const google_protobuf_Timestamp* msg, upb_arena* arena, size_t* len) {
- return upb_encode(msg, &google_protobuf_Timestamp_msginit, arena, len);
-}
-
-UPB_INLINE int64_t
-google_protobuf_Timestamp_seconds(const google_protobuf_Timestamp* msg) {
- return UPB_FIELD_AT(msg, int64_t, UPB_SIZE(0, 0));
-}
-UPB_INLINE int32_t
-google_protobuf_Timestamp_nanos(const google_protobuf_Timestamp* msg) {
- return UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8));
-}
-
-UPB_INLINE void google_protobuf_Timestamp_set_seconds(
- google_protobuf_Timestamp* msg, int64_t value) {
- UPB_FIELD_AT(msg, int64_t, UPB_SIZE(0, 0)) = value;
-}
-UPB_INLINE void google_protobuf_Timestamp_set_nanos(
- google_protobuf_Timestamp* msg, int32_t value) {
- UPB_FIELD_AT(msg, int32_t, UPB_SIZE(8, 8)) = value;
-}
-
-UPB_END_EXTERN_C
-
-#include "upb/port_undef.inc"
-
-#endif /* GOOGLE_PROTOBUF_TIMESTAMP_PROTO_UPB_H_ */