summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJosh Blum2012-11-11 22:17:04 -0800
committerJosh Blum2012-11-11 22:17:04 -0800
commit5ea36ce4fbf2198c9cc3652d1135247b0e1171f9 (patch)
tree9d320a9f6374e4c28975af7c808f2ba5eccd13c0 /python
parent8f9fedb6846f7304ac4c5ed7ae3233a03b5359b7 (diff)
downloadsandhi-5ea36ce4fbf2198c9cc3652d1135247b0e1171f9.tar.gz
sandhi-5ea36ce4fbf2198c9cc3652d1135247b0e1171f9.tar.bz2
sandhi-5ea36ce4fbf2198c9cc3652d1135247b0e1171f9.zip
consistency for naming conventions, param orders
Diffstat (limited to 'python')
-rw-r--r--python/gras/GRAS_Block.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/gras/GRAS_Block.i b/python/gras/GRAS_Block.i
index f7db3d2..3ee8691 100644
--- a/python/gras/GRAS_Block.i
+++ b/python/gras/GRAS_Block.i
@@ -175,7 +175,7 @@ struct BlockPython : Block
std::vector<Tag> get_input_tags(const size_t which_input)
{
- Block::TagIter it = Block::get_input_tags(which_input);
+ const TagIter it = Block::get_input_tags(which_input);
std::vector<Tag> tags(it.begin(), it.end());
return tags;
}