| 97 | } |
| 98 | |
| 99 | inline void SetDefaultStr(LocalizableString & localizableStr, std::string const & str) |
| 100 | { |
| 101 | if (str.empty()) |
| 102 | { |
| 103 | localizableStr.erase(kDefaultLangCode); |
| 104 | return; |
| 105 | } |
| 106 | |
| 107 | localizableStr[kDefaultLangCode] = str; |
| 108 | } |
| 109 | |
| 110 | bool IsEqual(m2::PointD const & lhs, m2::PointD const & rhs); |
| 111 | bool IsEqual(geometry::PointWithAltitude const & lhs, geometry::PointWithAltitude const & rhs); |