mirror of
https://github.com/love2d/love.git
synced 2026-08-16 16:20:42 +02:00
Remove extra whitespace
--HG-- branch : minor
This commit is contained in:
@@ -50,13 +50,13 @@ public:
|
||||
|
||||
bool find(const char *key, T &t)
|
||||
{
|
||||
if (forward.find(key) == forward.end())
|
||||
if (forward.find(key) == forward.end())
|
||||
return false;
|
||||
t = forward[key];
|
||||
return true;
|
||||
}
|
||||
|
||||
bool find(T key, const char *&str)
|
||||
bool find(T key, const char *&str)
|
||||
{
|
||||
if (reverse.find(key) == reverse.end())
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user