summaryrefslogtreecommitdiff
path: root/upb/upb.h
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-01-12 16:15:46 -0800
committerJoshua Haberman <jhaberman@gmail.com>2019-01-12 16:15:46 -0800
commitd2f9bec5c6f3c34362cf13e35e11d3dbc7888a32 (patch)
tree7a2d1f3e34ea5ad6486cbb56da8b6ed49a123690 /upb/upb.h
parent0553eff64a87eceff0de3b6260b4f2d45b61703a (diff)
Removed old-style C++ handlers that relied on UB in favor of more normal ones.
Diffstat (limited to 'upb/upb.h')
-rw-r--r--upb/upb.h69
1 files changed, 0 insertions, 69 deletions
diff --git a/upb/upb.h b/upb/upb.h
index 2fb7a88..a75e311 100644
--- a/upb/upb.h
+++ b/upb/upb.h
@@ -74,7 +74,6 @@ template <int N> class InlinedEnvironment;
#error Need implementations of [v]snprintf and va_copy
#endif
-
#if ((defined(__cplusplus) && __cplusplus >= 201103L) || \
defined(__GXX_EXPERIMENTAL_CXX0X__)) && !defined(UPB_NO_CXX11)
#define UPB_CXX11
@@ -110,28 +109,6 @@ template <int N> class InlinedEnvironment;
#define UPB_FINAL
#endif
-/* UPB_DECLARE_TYPE()
- * UPB_DECLARE_DERIVED_TYPE()
- * UPB_DECLARE_DERIVED_TYPE2()
- *
- * Macros for declaring C and C++ types both, including inheritance.
- * The inheritance doesn't use real C++ inheritance, to stay compatible with C.
- *
- * These macros also provide upcasts:
- * - in C: types-specific functions (ie. upb_foo_upcast(foo))
- * - in C++: upb::upcast(foo) along with implicit conversions
- *
- * Downcasts are not provided, but upb/def.h defines downcasts for upb::Def. */
-
-#define UPB_C_UPCASTS(ty, base) \
- UPB_INLINE base *ty ## _upcast_mutable(ty *p) { return (base*)p; } \
- UPB_INLINE const base *ty ## _upcast(const ty *p) { return (const base*)p; }
-
-#define UPB_C_UPCASTS2(ty, base, base2) \
- UPB_C_UPCASTS(ty, base) \
- UPB_INLINE base2 *ty ## _upcast2_mutable(ty *p) { return (base2*)p; } \
- UPB_INLINE const base2 *ty ## _upcast2(const ty *p) { return (const base2*)p; }
-
#ifdef __cplusplus
#define UPB_BEGIN_EXTERN_C extern "C" {
@@ -139,45 +116,6 @@ template <int N> class InlinedEnvironment;
#define UPB_PRIVATE_FOR_CPP private:
#define UPB_DECLARE_TYPE(cppname, cname) typedef cppname cname;
-#define UPB_DECLARE_DERIVED_TYPE(cppname, cppbase, cname, cbase) \
- UPB_DECLARE_TYPE(cppname, cname) \
- UPB_C_UPCASTS(cname, cbase) \
- namespace upb { \
- template <> \
- class Pointer<cppname> : public PointerBase<cppname, cppbase> { \
- public: \
- explicit Pointer(cppname* ptr) \
- : PointerBase<cppname, cppbase>(ptr) {} \
- }; \
- template <> \
- class Pointer<const cppname> \
- : public PointerBase<const cppname, const cppbase> { \
- public: \
- explicit Pointer(const cppname* ptr) \
- : PointerBase<const cppname, const cppbase>(ptr) {} \
- }; \
- }
-
-#define UPB_DECLARE_DERIVED_TYPE2(cppname, cppbase, cppbase2, cname, cbase, \
- cbase2) \
- UPB_DECLARE_TYPE(cppname, cname) \
- UPB_C_UPCASTS2(cname, cbase, cbase2) \
- namespace upb { \
- template <> \
- class Pointer<cppname> : public PointerBase2<cppname, cppbase, cppbase2> { \
- public: \
- explicit Pointer(cppname* ptr) \
- : PointerBase2<cppname, cppbase, cppbase2>(ptr) {} \
- }; \
- template <> \
- class Pointer<const cppname> \
- : public PointerBase2<const cppname, const cppbase, const cppbase2> { \
- public: \
- explicit Pointer(const cppname* ptr) \
- : PointerBase2<const cppname, const cppbase, const cppbase2>(ptr) {} \
- }; \
- }
-
#else /* !defined(__cplusplus) */
#define UPB_BEGIN_EXTERN_C
@@ -186,13 +124,6 @@ template <int N> class InlinedEnvironment;
#define UPB_DECLARE_TYPE(cppname, cname) \
struct cname; \
typedef struct cname cname;
-#define UPB_DECLARE_DERIVED_TYPE(cppname, cppbase, cname, cbase) \
- UPB_DECLARE_TYPE(cppname, cname) \
- UPB_C_UPCASTS(cname, cbase)
-#define UPB_DECLARE_DERIVED_TYPE2(cppname, cppbase, cppbase2, \
- cname, cbase, cbase2) \
- UPB_DECLARE_TYPE(cppname, cname) \
- UPB_C_UPCASTS2(cname, cbase, cbase2)
#endif /* defined(__cplusplus) */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback