Remove extra whitespace

--HG--
branch : minor
This commit is contained in:
Bart van Strien
2017-02-11 20:12:44 +01:00
parent cbaf9e047b
commit 42b8249b60
10 changed files with 96 additions and 96 deletions
+2 -2
View File
@@ -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;