From f738596a3cd969b146353443ebd5465bc3b6d84c Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Thu, 17 Jun 2021 23:02:57 +0200 Subject: [PATCH] Added try_catch with location --- contrib/epee/include/misc_language.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/epee/include/misc_language.h b/contrib/epee/include/misc_language.h index 1a02c7c8..276dfe02 100644 --- a/contrib/epee/include/misc_language.h +++ b/contrib/epee/include/misc_language.h @@ -65,6 +65,8 @@ namespace epee } +#define STD_TRY_CATCH_LOCATION(return_val) STD_TRY_CATCH(LOCATION_SS, return_val) + /* helper class, to make able get namespace via decltype()::*/ template class namespace_accessor: public base_class{};