We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 307a65b + dc93b7a commit 0d59341Copy full SHA for 0d59341
src/Deprecated.jl
@@ -7,6 +7,14 @@
7
## Remove in 0.9
8
##==============================================================================
9
10
+import Base: *
11
+
12
+# FIXME remove! is it really needed? This is type piracy
13
+function *(a::Symbol, b::AbstractString)
14
+ @warn "product * on ::Symbol ::String has been deprecated, please use Symbol(string(a,b)) directly"
15
+ Symbol(string(a,b))
16
+end
17
18
setTimestamp!(f::FactorDataLevel1, ts::DateTime) = error("setTimestamp!(f::FactorDataLevel1, ts::DateTime) is deprecated")
19
20
include("../attic/GraphsDFG/GraphsDFG.jl")
0 commit comments