diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2016-03-31 15:51:48 -0700 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2016-03-31 16:03:59 -0700 |
commit | efae890cd45708e18b112bd277824118c87a6eff (patch) | |
tree | b1867429f6cb8f4d19ebd3975bb299a6adb28e94 | |
parent | 38bdba7be13924a3bc7d20b914c4fb3b6435b769 (diff) |
glapi: glX_proto_send.py: remove useless pass keyword
The pass keyword is the solution for python's whitespace significant
code. It's used when something is needed for whitespace rules, but not
for programming. Don't add it after actual code.
Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
-rw-r--r-- | src/mapi/glapi/gen/glX_proto_send.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/glX_proto_send.py b/src/mapi/glapi/gen/glX_proto_send.py index 8fe0876bfc..53881639c6 100644 --- a/src/mapi/glapi/gen/glX_proto_send.py +++ b/src/mapi/glapi/gen/glX_proto_send.py @@ -440,7 +440,6 @@ class PrintGlxProtoStubs(glX_proto_common.glx_print_proto): self.printRenderFunction(func) elif func.glx_sop != 0 or func.glx_vendorpriv != 0: self.printSingleFunction(func, name) - pass else: print "/* Missing GLX protocol for %s. */" % (name) |