Skip to content
Snippets Groups Projects
Commit defe4213 authored by Vladimir Davydov's avatar Vladimir Davydov Committed by Kirill Yukhin
Browse files

index: drop unused xc wrappers

NO_DOC=code cleanup
NO_TEST=code cleanup
NO_CHANGELOG=code cleanup
parent 49b84cd6
No related branches found
No related tags found
No related merge requests found
......@@ -855,31 +855,6 @@ struct IteratorGuard
~IteratorGuard() { iterator_delete(it); }
};
/*
* C++ wrappers around index methods.
* They throw an exception in case of error.
*/
static inline struct iterator *
index_create_iterator_xc(struct index *index, enum iterator_type type,
const char *key, uint32_t part_count)
{
struct iterator *it = index_create_iterator(index, type,
key, part_count);
if (it == NULL)
diag_raise();
return it;
}
static inline struct tuple *
iterator_next_xc(struct iterator *it)
{
struct tuple *tuple;
if (iterator_next(it, &tuple) != 0)
diag_raise();
return tuple;
}
#endif /* defined(__plusplus) */
#endif /* TARANTOOL_BOX_INDEX_H_INCLUDED */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment