forked from organicmaps/organicmaps
Preventing checks in case of DebugPrint of invalid GeoObjectIds.
This commit is contained in:
parent
97856a84c4
commit
2269433a5e
2 changed files with 6 additions and 1 deletions
|
@ -89,7 +89,10 @@ std::string DebugPrint(GeoObjectId::Type const & t)
|
|||
std::string DebugPrint(GeoObjectId const & id)
|
||||
{
|
||||
std::ostringstream oss;
|
||||
oss << DebugPrint(id.GetType()) << " " << id.GetSerialId();
|
||||
// To print serial id it's written |id.m_encodedId & kSerialMask| instead of id.GetSerialId().
|
||||
// It's done to be able to print a instance of GeoObjectId created by default constructor.
|
||||
// In case of instance of GeoObjectId created by default ctor GetSerialId() shouldn't be called.
|
||||
oss << DebugPrint(id.GetType()) << " " << (id.m_encodedId & kSerialMask);
|
||||
return oss.str();
|
||||
}
|
||||
} // namespace base
|
||||
|
|
|
@ -35,6 +35,8 @@ namespace base
|
|||
// and the difference does not seem important. Also this would probably touch the highest bit.
|
||||
class GeoObjectId
|
||||
{
|
||||
friend std::string DebugPrint(GeoObjectId const & id);
|
||||
|
||||
public:
|
||||
// Sources of the objects.
|
||||
enum class Type : uint8_t
|
||||
|
|
Loading…
Add table
Reference in a new issue