forked from organicmaps/organicmaps
Minor code style changes.
This commit is contained in:
parent
18b6f31366
commit
3c3bb9301e
2 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ public:
|
|||
|
||||
inline bool operator== (StringUtf8Multilang const & rhs) const
|
||||
{
|
||||
return m_s == rhs.m_s;
|
||||
return (m_s == rhs.m_s);
|
||||
}
|
||||
|
||||
inline void Clear() { m_s.clear(); }
|
||||
|
|
|
@ -38,7 +38,7 @@ public:
|
|||
|
||||
inline void Clear() { m_s.clear(); }
|
||||
inline bool IsEmpty() const { return m_s.empty(); }
|
||||
inline string Get() const { return m_s; }
|
||||
inline string const & Get() const { return m_s; }
|
||||
|
||||
template <class TSink> void Write(TSink & sink) const
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue