This is an automated email from the ASF dual-hosted git repository. mmartell pushed a commit to branch GEODE-9559-demacroize-clicache in repository https://gitbox.apache.org/repos/asf/geode-native.git
commit afe9584917027e2c9e94db3fa8eb25e092a8cc3c Author: Mike Martell <[email protected]> AuthorDate: Sat Aug 28 13:31:45 2021 -0700 GEODE-9559: Forgot to rm _GFCLI_CACHEABLEHASHSET_DEF_GENERIC --- clicache/src/CacheableHashSet.hpp | 57 --------------------------------------- 1 file changed, 57 deletions(-) diff --git a/clicache/src/CacheableHashSet.hpp b/clicache/src/CacheableHashSet.hpp index d3c42fb..920f1c6 100644 --- a/clicache/src/CacheableHashSet.hpp +++ b/clicache/src/CacheableHashSet.hpp @@ -604,63 +604,6 @@ namespace Apache }; } -#define _GFCLI_CACHEABLEHASHSET_DEF_GENERIC(m, HSTYPE) \ - public ref class m : public Internal::CacheableHashSetType<static_cast<int8_t>(native::internal::DSCode::m), HSTYPE> \ - { \ - public: \ - /** <summary> - * Allocates a new empty instance. - * </summary> - */ \ - inline m() \ - : Internal::CacheableHashSetType<static_cast<int8_t>(native::internal::DSCode::m), HSTYPE>() {} \ - \ - /** <summary> - * Allocates a new instance with the given size. - * </summary> - * <param name="size">the initial size of the new instance</param> - */ \ - inline m(System::Int32 size) \ - : Internal::CacheableHashSetType<static_cast<int8_t>(native::internal::DSCode::m), HSTYPE>(size) {} \ - \ - /** <summary> - * Static function to create a new empty instance. - * </summary> - */ \ - inline static m^ Create() \ - { \ - return gcnew m(); \ - } \ - \ - /** <summary> - * Static function to create a new instance with the given size. - * </summary> - */ \ - inline static m^ Create(System::Int32 size) \ - { \ - return gcnew m(size); \ - } \ - \ - /* <summary> - * Factory function to register this class. - * </summary> - */ \ - static ISerializable^ CreateDeserializable() \ - { \ - return gcnew m(); \ - } \ - \ - internal: \ - static ISerializable^ Create(std::shared_ptr<apache::geode::client::Serializable> obj) \ - { \ - return gcnew m(obj); \ - } \ - \ - private: \ - inline m(std::shared_ptr<apache::geode::client::Serializable> nativeptr) \ - : Internal::CacheableHashSetType<static_cast<int8_t>(native::internal::DSCode::m), HSTYPE>(nativeptr) { } \ - }; - /// <summary> /// A mutable <c>ICacheableKey</c> hash set wrapper that can serve as /// a distributable object for caching.
