Fixed some namespace-related issues.

This commit is contained in:
Tim Ambrogi
2022-05-19 11:11:08 -04:00
parent af9ec263a1
commit 75748915ed
4 changed files with 5 additions and 3 deletions

View File

@@ -22,7 +22,7 @@
#if SQUID_ENABLE_TASK_DEBUG
/// @ingroup Tasks
/// @brief Macro that instruments a task with a debug name string. Usually at the top of every task coroutine as @c TASK_NAME(__FUNCTION__)
#define TASK_NAME(...) co_await SetDebugName(__VA_ARGS__);
#define TASK_NAME(...) co_await NAMESPACE_SQUID::SetDebugName(__VA_ARGS__);
#define DEBUG_STR , std::string in_debugStr
#define PASS_DEBUG_STR , in_debugStr
#define MANUAL_DEBUG_STR(debugStr) , debugStr