Skip to content

Commit

Permalink
[Radon] Fix long strings for Julia 1.6
Browse files Browse the repository at this point in the history
Backslash before newline requires at least Julia v1.7
  • Loading branch information
tkemmer committed Aug 23, 2022
1 parent df4ec69 commit 335604b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/deprecated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
yukawa::T
) where T
Base.depwarn(
"This variant of the function is deprecated, painfully slow, and will be removed \
soon! Please use the overloaded version with `elem::TriangleQuad{T}` parameter \
instead!",
"This variant of the function is deprecated, painfully slow, and will be removed " *
"soon! Please use the overloaded version with `elem::TriangleQuad{T}` parameter " *
"instead!",
:regularyukawacoll_single_triangle
)
Radon.radoncoll(ξ, quadraturepoints([elem])[1], yukawa, Radon.regularyukawapot)
Expand All @@ -23,9 +23,9 @@ end
yukawa::T
) where T
Base.depwarn(
"This variant of the function is deprecated, painfully slow, and will be removed \
soon! Please use the overloaded version with `elem::TriangleQuad{T}` parameter \
instead!",
"This variant of the function is deprecated, painfully slow, and will be removed " *
"soon! Please use the overloaded version with `elem::TriangleQuad{T}` parameter " *
"instead!",
:regularyukawacoll_double_triangle
)
Radon.radoncoll(ξ, quadraturepoints([elem])[1], yukawa, Radon.∂ₙregularyukawapot)
Expand Down

0 comments on commit 335604b

Please sign in to comment.