Skip to content

Commit a37e0ae

Browse files
committed
add license to top of new files
fix add licenses
1 parent 9e5d8e8 commit a37e0ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+81
-0
lines changed

base/binaryplatforms.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
2+
13
module BinaryPlatforms
24

35
export AbstractPlatform, Platform, HostPlatform, platform_dlext, tags, arch, os,

base/compiler/cicache.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
2+
13
"""
24
struct InternalCodeCache
35

base/compiler/methodtable.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
2+
13
abstract type MethodTableView; end
24

35
struct MethodLookupResult

base/compiler/stmtinfo.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
2+
13
"""
24
struct MethodMatchInfo
35

base/cpuid.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
2+
13
module CPUID
24

35
export cpu_isa

base/iddict.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
2+
13
"""
24
IdDict([itr])
35

base/idset.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
2+
13
# Like Set, but using IdDict
24
mutable struct IdSet{T} <: AbstractSet{T}
35
dict::IdDict{T,Nothing}

base/pkgid.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
2+
13
struct PkgId
24
uuid::Union{UUID,Nothing}
35
name::String

base/toml_parser.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
2+
13
module TOML
24

35
using Base: IdSet

base/ttyhascolor.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is a part of Julia. License is MIT: https://julialang.org/license
2+
13
if Sys.iswindows()
24
ttyhascolor(term_type = nothing) = true
35
else

0 commit comments

Comments
 (0)