Skip to content

Commit 6d6ad0b

Browse files
committed
update license header in files
1 parent 4adce14 commit 6d6ad0b

File tree

11 files changed

+22
-2
lines changed

11 files changed

+22
-2
lines changed

base/generator.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: http://julialang.org/license
2+
13
"""
24
Generator(f, iter)
35

base/linalg/hessenberg.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: http://julialang.org/license
2+
13
immutable Hessenberg{T,S<:AbstractMatrix} <: Factorization{T}
24
factors::S
35
τ::Vector{T}

base/multinverses.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: http://julialang.org/license
2+
13
module MultiplicativeInverses
24

35
import Base: div, divrem, rem, unsigned

base/permuteddimsarray.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: http://julialang.org/license
2+
13
module PermutedDimsArrays
24

35
export permutedims

base/reshapedarray.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: http://julialang.org/license
2+
13
using Base.MultiplicativeInverses: SignedMultiplicativeInverse
24

35
immutable ReshapedArray{T,N,P<:AbstractArray,MI<:Tuple{Vararg{SignedMultiplicativeInverse{Int}}}} <: AbstractArray{T,N}

contrib/add_license_to_files.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ const skipfiles = [
5050
"../src/support/MurmurHash3.c",
5151
"../src/support/MurmurHash3.h",
5252
"../src/support/asprintf.c",
53+
"../src/support/dirname.c",
5354
"../src/support/strptime.c",
5455
"../src/support/strtod.c",
5556
"../src/support/tzfile.h",

src/llvm-gcroot.cpp

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: http://julialang.org/license
2+
13
#include "llvm-version.h"
24
#include <llvm/ADT/SmallBitVector.h>
35
#include <llvm/IR/Value.h>

test/ambiguous.jl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# DO NOT CHANGE LINE NUMBERS BELOW
1+
# This file is a part of Julia. License is MIT: http://julialang.org/license
2+
3+
# DO NOT ALTER ORDER OR SPACING OF METHODS BELOW
4+
const lineoffset = @__LINE__ + 0 # XXX: __LINE__ at the end of a line is off-by-one
25
ambig(x, y) = 1
36
ambig(x::Integer, y) = 2
47
ambig(x, y::Integer) = 3
@@ -10,7 +13,7 @@ ambigs = Any[[], [3], [2,5], [], [3]]
1013

1114
mt = methods(ambig)
1215

13-
getline(m::Method) = m.line - 1 # -1 for the comment at the top
16+
getline(m::Method) = m.line - lineoffset
1417

1518
for m in mt
1619
ln = getline(m)

test/bigfloat.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: http://julialang.org/license
2+
13
@test big(2.0)^big(3) == 8
24

35
for T in [Int8, UInt8, Int16, UInt16, Int32, UInt32, Int64, UInt64, Int128, UInt128, BigInt]

test/perf/threads/laplace3d/laplace3d.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// This file is a part of Julia. License is MIT: http://julialang.org/license
2+
23
// GCC command line: gcc -fopenmp -mavx2 laplace3d.c -o laplace3d
34

45
/* Laplace 3D

test/sparsedir/umfpack.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# This file is a part of Julia. License is MIT: http://julialang.org/license
2+
23
using Base.Test
34

45
se33 = speye(3)

0 commit comments

Comments
 (0)