Merge branch 'next' into feat/check-pox-2-params

This commit is contained in:
Jude Nelson
2022-12-17 02:38:32 -05:00
71 changed files with 2907 additions and 1204 deletions

View File

@@ -646,3 +646,14 @@ macro_rules! impl_byte_array_rusqlite_only {
}
};
}
// Test hepler to get the name of the current function.
#[macro_export]
macro_rules! function_name {
() => {
stdext::function_name!()
.rsplit_once("::")
.expect("Failed to split current function name")
.1
};
}