mirror of
https://github.com/MobileGL-Dev/MobileGL
synced 2026-09-11 21:58:31 +09:00
[Fix] (Types.h): add typename specifier
This commit is contained in:
@@ -96,7 +96,7 @@ namespace MobileGL {
|
|||||||
template<typename ObjectType>
|
template<typename ObjectType>
|
||||||
class BindingSlot {
|
class BindingSlot {
|
||||||
public:
|
public:
|
||||||
using TargetEnum = ObjectType::TargetEnum;
|
using TargetEnum = typename ObjectType::TargetEnum;
|
||||||
|
|
||||||
explicit BindingSlot(TargetEnum target)
|
explicit BindingSlot(TargetEnum target)
|
||||||
: m_target(target), m_boundObject(nullptr) {
|
: m_target(target), m_boundObject(nullptr) {
|
||||||
|
|||||||
Reference in New Issue
Block a user