Merge pull request #467 from peace-maker/removefromtrie_tag

Add missing |bool| return tag to RemoveFromTrie native
This commit is contained in:
Nicholas Hastings 2016-01-05 10:55:18 -05:00
commit 7ada5f957e

View File

@ -253,7 +253,7 @@ native bool GetTrieString(Handle map, const char[] key, char[] value, int max_si
* @return True on success, false if the value was never set.
* @error Invalid Handle.
*/
native RemoveFromTrie(Handle map, const char[] key);
native bool RemoveFromTrie(Handle map, const char[] key);
/**
* Clears all entries from a Map.