Minor code style changes.

This commit is contained in:
vng 2012-05-10 21:12:27 +03:00 committed by Alex Zolotarev
parent 18b6f31366
commit 3c3bb9301e
2 changed files with 2 additions and 2 deletions

View file

@ -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(); }

View file

@ -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
{