Sha256: 7a80a85d9b924270db4c5da229bf3b3bb822b361fd36a4eccab5011920dcd035
Contents?: true
Size: 347 Bytes
Versions: 12
Compression:
Stored size: 347 Bytes
Contents
#ifndef ruby_mark__hpp #define ruby_mark__hpp //! Default function to call to mark a data object. /*! This function can be specialized for a particular type to override * the default behavior (which is to not mark any additional objects). */ namespace Rice { template<typename T> void ruby_mark(T* data) { } } #endif // ruby_mark__hpp
Version data entries
12 entries across 12 versions & 1 rubygems