summaryrefslogtreecommitdiffstats
path: root/src/mesa/program/symbol_table.h
diff options
context:
space:
mode:
authorTapani Pälli <[email protected]>2014-02-27 10:15:05 +0200
committerTapani Pälli <[email protected]>2014-03-10 09:45:41 +0200
commitaa0d95a08dbf8f0e3ed66b624ccbc60753b61ef1 (patch)
treeecc63b8fdf0954ca937ea2e368f6e3dad8d81718 /src/mesa/program/symbol_table.h
parent678cf9618f252eea209c9f37211dde325223c5ae (diff)
mesa: remove _mesa_symbol_table_iterator structure
Nothing uses this structure, removal fixes Klocwork error about the possible oom condition in _mesa_symbol_table_iterator_ctor. Signed-off-by: Tapani Pälli <[email protected]> Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/program/symbol_table.h')
-rw-r--r--src/mesa/program/symbol_table.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mesa/program/symbol_table.h b/src/mesa/program/symbol_table.h
index f9d91649bbc..1027f476110 100644
--- a/src/mesa/program/symbol_table.h
+++ b/src/mesa/program/symbol_table.h
@@ -24,7 +24,6 @@
#define MESA_SYMBOL_TABLE_H
struct _mesa_symbol_table;
-struct _mesa_symbol_table_iterator;
extern void _mesa_symbol_table_push_scope(struct _mesa_symbol_table *table);
@@ -47,16 +46,4 @@ extern struct _mesa_symbol_table *_mesa_symbol_table_ctor(void);
extern void _mesa_symbol_table_dtor(struct _mesa_symbol_table *);
-extern struct _mesa_symbol_table_iterator *_mesa_symbol_table_iterator_ctor(
- struct _mesa_symbol_table *table, int name_space, const char *name);
-
-extern void _mesa_symbol_table_iterator_dtor(
- struct _mesa_symbol_table_iterator *);
-
-extern void *_mesa_symbol_table_iterator_get(
- struct _mesa_symbol_table_iterator *iter);
-
-extern int _mesa_symbol_table_iterator_next(
- struct _mesa_symbol_table_iterator *iter);
-
#endif /* MESA_SYMBOL_TABLE_H */