x) Missing () on a complex statement
This commit is contained in:
parent
9a74f8ca15
commit
7143022c54
@ -53,7 +53,7 @@ namespace res
|
|||||||
[Serializable]
|
[Serializable]
|
||||||
public class Ref<T> : Ref where T : class
|
public class Ref<T> : Ref where T : class
|
||||||
{
|
{
|
||||||
public T res => m_res != null ? m_res : m_res = Mgr.load<T>( filename );
|
public T res => m_res != null ? m_res : (m_res = Mgr.load<T>( filename ));
|
||||||
|
|
||||||
//For serialization
|
//For serialization
|
||||||
public Ref()
|
public Ref()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user