Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not promote to Any #27

Merged
merged 2 commits into from May 15, 2020
Merged

Do not promote to Any #27

merged 2 commits into from May 15, 2020

Conversation

tkf
Copy link
Member

@tkf tkf commented May 15, 2020

Before:

julia> push!!([Init(+)], 0)
2-element Array{Any,1}:
  Init(+)
 0

After:

julia> push!!([Init(+)], 0)
2-element Array{Union{InitialValues.InitialValueOf{typeof(+)}, Int64},1}:
  Init(+)
 0

Before:

    julia> push!!([Init(+)], 0)
    2-element Array{Any,1}:
      Init(+)
     0

After:

    julia> push!!([Init(+)], 0)
    2-element Array{Union{InitialValues.InitialValueOf{typeof(+)}, Int64},1}:
      Init(+)
     0
@codecov-io
Copy link

codecov-io commented May 15, 2020

Codecov Report

Merging #27 into master will decrease coverage by 1.83%.
The diff coverage is 0.00%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #27      +/-   ##
==========================================
- Coverage   91.83%   90.00%   -1.84%     
==========================================
  Files           2        2              
  Lines          49       50       +1     
==========================================
  Hits           45       45              
- Misses          4        5       +1     
Impacted Files Coverage Δ
src/InitialValues.jl 85.71% <0.00%> (-2.53%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 065cc1c...115e29f. Read the comment docs.

@mergify mergify bot merged commit bf7c74a into master May 15, 2020
@delete-merged-branch delete-merged-branch bot deleted the promote branch May 15, 2020 03:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants