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

Version Path
rice-4.3.3 rice/ruby_mark.hpp
rice-4.3.2 rice/ruby_mark.hpp
rice-4.3.1 rice/ruby_mark.hpp
rice-4.3.0 rice/ruby_mark.hpp
rice-4.2.1 rice/ruby_mark.hpp
rice-4.2.0 rice/ruby_mark.hpp
rice-4.1.0 rice/ruby_mark.hpp
rice-4.0.4 rice/ruby_mark.hpp
rice-4.0.3 rice/ruby_mark.hpp
rice-4.0.2 rice/ruby_mark.hpp
rice-4.0.1 rice/ruby_mark.hpp
rice-4.0.0 rice/ruby_mark.hpp