From 250423ca00e8e80f95078efc54a5df61a1e1f0ab Mon Sep 17 00:00:00 2001 From: Kirill Shcherbatov <kshcherbatov@tarantool.org> Date: Fri, 22 Feb 2019 13:25:56 +0300 Subject: [PATCH] lib: fix undef _api_name in bps_tree header The bps_tree.h header defines the macro _api_name, but does not undefine it at the end. Fixed. --- src/lib/salad/bps_tree.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/salad/bps_tree.h b/src/lib/salad/bps_tree.h index 8d1a621085..09c3338f1f 100644 --- a/src/lib/salad/bps_tree.h +++ b/src/lib/salad/bps_tree.h @@ -6004,6 +6004,7 @@ bps_tree_debug_check_internal_functions(bool assertme) #undef BPS_TREE_BRANCH_TRACE /* {{{ Macros for custom naming of structs and functions */ +#undef _api_name #undef _bps #undef _bps_tree #undef _BPS -- GitLab