From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: Kirill Shcherbatov Subject: [PATCH v3 2/7] lib: fix undef _api_name in bps_tree header Date: Fri, 22 Feb 2019 18:42:27 +0300 Message-Id: In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit To: tarantool-patches@freelists.org, vdavydov.dev@gmail.com Cc: Kirill Shcherbatov List-ID: 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 8d1a62108..09c3338f1 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 -- 2.20.1