Skip to content

Commit 06dc4fc

Browse files
authored
String -> Base.String
Extending a constructor from Base requires explicit qualification in Julia 1.13.
1 parent f39e50d commit 06dc4fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raw.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function Base.:(==)(a::Raw, b::Raw)
8787
end
8888

8989
Base.view(o::Raw) = view(o.data, o.pos:o.pos + o.len)
90-
String(o::Raw) = String(view(o))
90+
Base.String(o::Raw) = String(view(o))
9191

9292
Base.IteratorSize(::Type{Raw}) = Base.SizeUnknown()
9393
Base.eltype(::Type{Raw}) = Raw

0 commit comments

Comments
 (0)