mirror of https://github.com/swig/swig
Ruby mark_function example and docs fixes
Relates to Ruby trackings hash bug #225
This commit is contained in:
parent
8a6874e633
commit
b5873218b6
|
@ -4818,7 +4818,7 @@ public:
|
|||
class Zoo
|
||||
{
|
||||
protected:
|
||||
std::vector<animal *=""> animals;
|
||||
std::vector<Animal *> animals;
|
||||
|
||||
public:
|
||||
// Construct an empty zoo
|
||||
|
|
|
@ -9,7 +9,7 @@ begin
|
|||
zoo.add_animal(tiger1)
|
||||
|
||||
# unset variables to force gc
|
||||
tiger = nil
|
||||
tiger1 = nil
|
||||
end
|
||||
|
||||
GC.start
|
||||
|
@ -20,4 +20,4 @@ tiger2 = zoo.get_animal(0)
|
|||
# Call a method to verify the animal is still valid and not gc'ed
|
||||
if tiger2.get_name != "tiger1"
|
||||
raise RuntimeError, "Wrong animal name"
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue