summaryrefslogtreecommitdiff
path: root/src/scripts/elua/apps/docgen/doctree.lua
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/elua/apps/docgen/doctree.lua')
-rw-r--r--src/scripts/elua/apps/docgen/doctree.lua8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/scripts/elua/apps/docgen/doctree.lua b/src/scripts/elua/apps/docgen/doctree.lua
index 0f835c5185..da1fd8827f 100644
--- a/src/scripts/elua/apps/docgen/doctree.lua
+++ b/src/scripts/elua/apps/docgen/doctree.lua
@@ -596,7 +596,6 @@ M.Type = Node:clone {
VOID = eolian.type_type.VOID,
REGULAR = eolian.type_type.REGULAR,
COMPLEX = eolian.type_type.COMPLEX,
- POINTER = eolian.type_type.POINTER,
CLASS = eolian.type_type.CLASS,
STATIC_ARRAY = eolian.type_type.STATIC_ARRAY,
TERMINATED_ARRAY = eolian.type_type.TERMINATED_ARRAY,
@@ -708,13 +707,6 @@ M.Type = Node:clone {
end
return wrap_type_attrs(self, self:full_name_get() .. "<"
.. table.concat(stypes, ", ") .. ">")
- elseif tpt == self.POINTER then
- local btp = self:base_type_get()
- local suffix = " *"
- if btp:type_get() == self.POINTER then
- suffix = "*"
- end
- return wrap_type_attrs(self, btp:serialize() .. suffix)
elseif tpt == self.STATIC_ARRAY then
return wrap_type_attrs(self, "static_array<"
.. self:base_type_get():serialize() .. ", "