diff --git a/tiledb/common/exception/status.h b/tiledb/common/exception/status.h index e513705e557..f718906360b 100644 --- a/tiledb/common/exception/status.h +++ b/tiledb/common/exception/status.h @@ -88,15 +88,6 @@ namespace common { } \ } while (false) -#define RETURN_NOT_OK_ELSE_TUPLE(s, else_, ...) \ - do { \ - Status _s = (s); \ - if (!_s.ok()) { \ - else_; \ - return {_s, __VA_ARGS__}; \ - } \ - } while (false) - /** * The original `Status` class, used as a ubiquitous return value to avoid * throwing exceptions.