aboutsummaryrefslogtreecommitdiffstats
path: root/src/dyn_interning.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-05-22 08:12:23 +0200
committerTristan Gingold <tgingold@free.fr>2020-05-22 08:50:36 +0200
commitadf0df4cc9f8ac8bdbbe81681e6f3dffcdb76d7f (patch)
tree196207195fed976bc2b02df40fee00cbed29aa26 /src/dyn_interning.adb
parente4bff0d914b25645bed8c28921f00f4f4c4a3293 (diff)
downloadghdl-adf0df4cc9f8ac8bdbbe81681e6f3dffcdb76d7f.tar.gz
ghdl-adf0df4cc9f8ac8bdbbe81681e6f3dffcdb76d7f.tar.bz2
ghdl-adf0df4cc9f8ac8bdbbe81681e6f3dffcdb76d7f.zip
netlists: use dyn_maps package for attributes.
Diffstat (limited to 'src/dyn_interning.adb')
-rw-r--r--src/dyn_interning.adb7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/dyn_interning.adb b/src/dyn_interning.adb
index 3388e184c..0550194f6 100644
--- a/src/dyn_interning.adb
+++ b/src/dyn_interning.adb
@@ -136,11 +136,4 @@ package body Dyn_Interning is
pragma Assert (Index <= Wrapper_Tables.Last (Inst.Els));
return Inst.Els.Table (Index).Obj;
end Get_By_Index;
-
- procedure Modify
- (Inst : in out Instance; Index : Index_Type; Obj : Object_Type) is
- begin
- pragma Assert (Index <= Wrapper_Tables.Last (Inst.Els));
- Inst.Els.Table (Index).Obj := Obj;
- end Modify;
end Dyn_Interning;