remove non-functional column information from Location objects

This commit is contained in:
Vern Paxson 2025-07-03 17:08:23 -07:00 committed by Arne Welzel
parent 5c63133226
commit a9b37467a4
11 changed files with 15 additions and 32 deletions

View file

@ -2626,7 +2626,7 @@ const TypePtr& base_type(TypeTag tag) {
if ( ! base_types[tag] ) {
base_types[tag] = make_intrusive<Type>(tag, true);
// Give the base types a pseudo-location for easier identification.
detail::Location l(type_name(tag), 0, 0, 0, 0);
detail::Location l(type_name(tag), 0, 0);
base_types[tag]->SetLocationInfo(&l);
}