Removed unused macros and functions.

This commit is contained in:
Igor Sysoev
2018-03-29 16:35:03 +03:00
parent 18377ad288
commit bd451a50a9
3 changed files with 0 additions and 38 deletions

View File

@@ -24,17 +24,5 @@ nxt_port_t *nxt_port_hash_first(nxt_lvlhsh_t *port_hash,
#define nxt_port_hash_next(port_hash, lhe) \
nxt_lvlhsh_each((port_hash), (lhe))
#define nxt_port_hash_each(port_hash, port) \
do { \
nxt_lvlhsh_each_t _lhe; \
\
for (port = nxt_port_hash_first((port_hash), &_lhe); \
port != NULL; \
port = nxt_port_hash_next((port_hash), &_lhe)) { \
#define nxt_port_hash_loop \
} \
} while(0)
#endif /* _NXT_PORT_HASH_H_INCLIDED_ */