| 220 | |
| 221 | #ifdef DEBUG_OVERLAYS_OUTPUT |
| 222 | std::string SquareHandle::GetOverlayDebugInfo() |
| 223 | { |
| 224 | std::ostringstream out; |
| 225 | out << "POI Priority(" << std::hex << std::setw(16) << std::setfill('0') << GetPriority() << ") " << std::dec |
| 226 | << DebugPrint(GetOverlayID()); |
| 227 | return out.str(); |
| 228 | } |
| 229 | #endif |
| 230 | |
| 231 | /// @param[in] rank Rank of the feature (bigger is better) |
no test coverage detected