[Fix] (Types.h): add typename specifier

This commit is contained in:
2025-07-17 22:04:37 +08:00
parent e72c1f70aa
commit 6de362cd1c
+1 -1
View File
@@ -96,7 +96,7 @@ namespace MobileGL {
template<typename ObjectType>
class BindingSlot {
public:
using TargetEnum = ObjectType::TargetEnum;
using TargetEnum = typename ObjectType::TargetEnum;
explicit BindingSlot(TargetEnum target)
: m_target(target), m_boundObject(nullptr) {