most ptr.get() conversion

This commit is contained in:
gtsoul-tech
2024-05-13 14:24:16 +03:00
parent 32f88cad09
commit 490c16471b
6 changed files with 24 additions and 24 deletions

View File

@@ -55,10 +55,10 @@ using namespace ue2;
#define CHECK_WITH_TEDDY_OK_TO_FAIL(fdr, hint) \
{ \
auto descr = getTeddyDescription(hint); \
if (descr && fdr != nullptr) { \
if (descr && fdr.get() != nullptr) { \
return; \
} else { \
ASSERT_TRUE(fdr != nullptr); \
ASSERT_TRUE(fdr.get() != nullptr); \
} \
}
#endif