Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/tangents.jl
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,8 @@ tangent_type(::Type{<:Base.TTY}) = NoTangent

tangent_type(::Type{<:IOStream}) = NoTangent

tangent_type(::Type{<:Base.CoreLogging.AbstractLogger}) = NoTangent

function split_union_tuple_type(tangent_types)

# Create first split.
Expand Down Expand Up @@ -1353,6 +1355,7 @@ tangents, but they're unable to check that `increment!!` is correct in an absolu
(Union, NoTangent),
(UnionAll, NoTangent),
(typeof(<:), NoTangent),
(Base.CoreLogging.SimpleLogger, NoTangent),
(IOStream(""), NoTangent),
]
# Construct test cases containing circular references. These typically require multiple
Expand Down
Loading