From 5ea36ce4fbf2198c9cc3652d1135247b0e1171f9 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 11 Nov 2012 22:17:04 -0800 Subject: consistency for naming conventions, param orders --- python/gras/GRAS_Block.i | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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 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 tags(it.begin(), it.end()); return tags; } -- cgit