@@ -235,7 +235,7 @@ std::optional<size_t> SymbolInstance::getDefaultHorizontalPlacedTextIndex() cons
235235}
236236
237237#if MLN_SYMBOL_GUARDS
238- bool SymbolInstance::check (const std:: source_location& source) const {
238+ bool SymbolInstance::check (const source_location& source) const {
239239 return !isFailed && check (check01, 1 , source) && check (check02, 2 , source) && check (check03, 3 , source) &&
240240 check (check04, 4 , source) && check (check05, 5 , source) && check (check06, 6 , source) &&
241241 check (check07, 7 , source) && check (check08, 8 , source) && check (check09, 9 , source) &&
@@ -251,7 +251,7 @@ bool SymbolInstance::check(const std::source_location& source) const {
251251bool SymbolInstance::checkIndexes (std::size_t textCount,
252252 std::size_t iconSize,
253253 std::size_t sdfSize,
254- const std:: source_location& source) const {
254+ const source_location& source) const {
255255 return !isFailed && checkIndex (placedRightTextIndex, textCount, source) &&
256256 checkIndex (placedCenterTextIndex, textCount, source) && checkIndex (placedLeftTextIndex, textCount, source) &&
257257 checkIndex (placedVerticalTextIndex, textCount, source) &&
@@ -260,12 +260,12 @@ bool SymbolInstance::checkIndexes(std::size_t textCount,
260260}
261261
262262namespace {
263- inline std::string locationSuffix (const std:: source_location& source) {
263+ inline std::string locationSuffix (const source_location& source) {
264264 return std::string (" from " ) + source.function_name () + " (" + source.file_name () + " :" +
265265 util::toString (source.line ()) + " )" ;
266266}
267267} // namespace
268- bool SymbolInstance::check (std::uint64_t v, int n, const std:: source_location& source) const {
268+ bool SymbolInstance::check (std::uint64_t v, int n, const source_location& source) const {
269269 if (!isFailed && v != checkVal) {
270270 isFailed = true ;
271271 Log::Error (Event::Crash,
@@ -275,7 +275,7 @@ bool SymbolInstance::check(std::uint64_t v, int n, const std::source_location& s
275275 return !isFailed;
276276}
277277
278- bool SymbolInstance::checkKey (const std:: source_location& source) const {
278+ bool SymbolInstance::checkKey (const source_location& source) const {
279279 if (!isFailed && key.size () > 10000 ) { // largest observed value=62
280280 isFailed = true ;
281281 Log::Error (Event::Crash,
@@ -286,7 +286,7 @@ bool SymbolInstance::checkKey(const std::source_location& source) const {
286286
287287bool SymbolInstance::checkIndex (const std::optional<std::size_t >& index,
288288 std::size_t size,
289- const std:: source_location& source) const {
289+ const source_location& source) const {
290290 if (index.has_value () && *index >= size) {
291291 isFailed = true ;
292292 Log::Error (Event::Crash,
0 commit comments