diff options
Diffstat (limited to 'src/synth/synth-heap.ads')
-rw-r--r-- | src/synth/synth-heap.ads | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/synth/synth-heap.ads b/src/synth/synth-heap.ads index 5568a3772..204ff3846 100644 --- a/src/synth/synth-heap.ads +++ b/src/synth/synth-heap.ads @@ -23,9 +23,9 @@ with Synth.Values; use Synth.Values; package Synth.Heap is -- Allocate a value. function Allocate_By_Type (T : Type_Acc) return Heap_Index; - function Allocate_By_Value (V : Value_Acc) return Heap_Index; + function Allocate_By_Value (V : Valtyp) return Heap_Index; - function Synth_Dereference (Idx : Heap_Index) return Value_Acc; + function Synth_Dereference (Idx : Heap_Index) return Valtyp; procedure Synth_Deallocate (Idx : Heap_Index); end Synth.Heap; |