Skip to content

Commit

Permalink
Merge pull request #467 from peace-maker/removefromtrie_tag
Browse files Browse the repository at this point in the history
Add missing |bool| return tag to RemoveFromTrie native
  • Loading branch information
psychonic committed Jan 5, 2016
2 parents 8f4f0f6 + d3cc797 commit 7ada5f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/include/adt_trie.inc
Expand Up @@ -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.
Expand Down

0 comments on commit 7ada5f9

Please sign in to comment.