We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96b6bd7 commit 47ee919Copy full SHA for 47ee919
src/output-flex.hpp
@@ -43,9 +43,9 @@ struct options_t;
43
enum class calling_context : std::uint8_t
44
{
45
main = 0, ///< In main context, i.e. the Lua script outside any callbacks
46
- process_node = 1, ///< In the process_node() callback
47
- process_way = 2, ///< In the process_way() callback
48
- process_relation = 3, ///< In the process_relation() callback
+ process_node = 1, ///< Inside a callback where a node is handled
+ process_way = 2, ///< Inside a callback where a way is handled
+ process_relation = 3, ///< Inside a callback where a relation is handled
49
select_relation_members = 4 ///< In the select_relation_members() callback
50
};
51
0 commit comments