Skip to content
Snippets Groups Projects
Commit 06e52526 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Document macros for header inclusion.

* xt_quicksort_base.h is included to generate quicksort functions.
parent 6f2943de
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,13 @@
#error "must define suffix for type to name functions"
#endif
#ifndef SORT_TYPE_CMP_LT
#error "must define suffix for type to name functions"
#error "must define macro to compare SORT_TYPE for less than relation"
#endif
#ifndef SORT_TYPE_CMP_LE
#error "must define macro to compare SORT_TYPE for less than or equal relation"
#endif
#ifndef SORT_TYPE_CMP_EQ
#error "must define macro to compare SORT_TYPE for equality"
#endif
#define MED3 NAME_COMPOSE(med3,SORT_TYPE_SUFFIX)
......
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