Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Feb 27, 2021
1 parent c8d0d91 commit ccb8493
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/Array.h
Original file line number Diff line number Diff line change
Expand Up @@ -450,10 +450,10 @@ template<typename TYPE> inline bool ContainsPointers()

struct TNonGcStringSet;

template<typename T> inline const void *PointerOf(hx::ObjectPtr<T> &o) { return o.mPtr; }
inline const void *PointerOf(String &s) { return s.raw_ptr(); }
//template<typename T> inline const void *PointerOf(hx::ObjectPtr<T> &o) { return o.mPtr; }
//inline const void *PointerOf(String &s) { return s.raw_ptr(); }
inline const void *PointerOf(hx::TNonGcStringSet &set) { return 0; }
inline const void *PointerOf(...) { return 0; }
//inline const void *PointerOf(...) { return 0; }



Expand Down

0 comments on commit ccb8493

Please sign in to comment.