diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2016-03-29 16:15:37 -0700 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2016-03-31 16:03:58 -0700 |
commit | 7564027a2f905dc50e6b7dd0dd933339499bc8e4 (patch) | |
tree | eb888ed74b2ee2f5e6239e33fa50dc5cd68688ab | |
parent | 8ddcec2058ed6379f1f5d3550a9299805f525ff7 (diff) |
glapi: gl_XML.py: add missing method prototype.
This method is a no-op, but it shuts up tools that get upset that Print
calls a non-existent method.
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
-rw-r--r-- | src/mapi/glapi/gen/gl_XML.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mapi/glapi/gen/gl_XML.py b/src/mapi/glapi/gen/gl_XML.py index 73baef6598..2ce6e5d75b 100644 --- a/src/mapi/glapi/gen/gl_XML.py +++ b/src/mapi/glapi/gen/gl_XML.py @@ -117,6 +117,9 @@ class gl_print_base(object): self.undef_list = [] + def printBody(self, api): + pass + def Print(self, api): self.printHeader() self.printBody(api) |