summaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2015-04-27 18:24:21 +0000
committerkrasimir <krasimir@chalmers.se>2015-04-27 18:24:21 +0000
commit5f25804b7332c3bd58dad0f64768d3b41d63bfb5 (patch)
tree2dd4b5d1568c7d7acebf6c1f6e361eb569cb3671 /src/runtime
parentfc4b39d65fb2aaf875988047454fcc7abdad1be2 (diff)
mark two more functions as static in the Python binding
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/python/pypgf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/python/pypgf.c b/src/runtime/python/pypgf.c
index 470592139..11383f16c 100644
--- a/src/runtime/python/pypgf.c
+++ b/src/runtime/python/pypgf.c
@@ -995,7 +995,7 @@ typedef struct IterObject {
PyObject* (*fetch)(struct IterObject* self);
} IterObject;
-PyObject*
+static PyObject*
Iter_fetch_expr(IterObject* self)
{
PgfExprProb* ep = gu_next(self->res, PgfExprProb*, self->pool);
@@ -1016,7 +1016,7 @@ Iter_fetch_expr(IterObject* self)
return res;
}
-PyObject*
+static PyObject*
Iter_fetch_token(IterObject* self)
{
PgfTokenProb* tp = gu_next(self->res, PgfTokenProb*, self->pool);