Fix: Use correct byte offset separation

":" instead of ","
This commit is contained in:
Marenz
2021-07-15 13:15:21 +02:00
parent 90f77f8c1f
commit 57db4c82ba
12 changed files with 171 additions and 171 deletions
+1 -1
View File
@@ -134,7 +134,7 @@ string sourceLocationComment(langutil::SourceLocation const& _location, IRGenera
+ to_string(_context.sourceIndices().at(*_location.sourceName))
+ ":"
+ to_string(_location.start)
+ ","
+ ":"
+ to_string(_location.end);
}