diff options
| author | Eugen Wissner <belka@caraus.de> | 2026-07-09 09:21:57 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2026-07-09 09:21:57 +0200 |
| commit | 8d8e771af944796eba10cfa9568d284daaab93a1 (patch) | |
| tree | 96aab1466fa210a574dd4dd406a5270d88c229c3 /boot/symbol.cc | |
| parent | cd3574320bf57b2eaad93ef6f58dee6c9d41cb19 (diff) | |
| download | elna-8d8e771af944796eba10cfa9568d284daaab93a1.tar.gz | |
Implement record extensions
Diffstat (limited to 'boot/symbol.cc')
| -rw-r--r-- | boot/symbol.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/boot/symbol.cc b/boot/symbol.cc index 902d331..d01eb8e 100644 --- a/boot/symbol.cc +++ b/boot/symbol.cc @@ -268,6 +268,11 @@ namespace elna::boot { } + record_type::record_type(type base) + : base(base) + { + } + procedure_type::procedure_type(return_t return_type) : return_type(return_type) { |
