Skip to content

Commit 837146f

Browse files
committed
Updating copyright
1 parent 15b5947 commit 837146f

20 files changed

+21
-21
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2012 Matthew Endsley
1+
Copyright 2012-2015 Matthew Endsley
22
All rights reserved
33

44
Redistribution and use in source and binary forms, with or without

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Contact
99

1010
License
1111
-------
12-
Copyright 2012 Matthew Endsley
12+
Copyright 2012-2015 Matthew Endsley
1313

1414
This project is governed by the BSD 2-clause license. For details see the file
1515
titled LICENSE in the project root folder.

include/TINYSTL/allocator.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

include/TINYSTL/buffer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

include/TINYSTL/hash.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

include/TINYSTL/hash_base.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

include/TINYSTL/new.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

include/TINYSTL/stddef.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

include/TINYSTL/string.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

include/TINYSTL/traits.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

include/TINYSTL/unordered_map.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

include/TINYSTL/unordered_set.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

include/TINYSTL/vector.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

test/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

test/unordered_map_nonpod.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012-2014 Matthew Endsley
2+
* Copyright 2012-2015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without
@@ -33,4 +33,4 @@ TEST(uomap_nonpod_compiles) {
3333
// verify this compiles
3434
typedef tinystl::unordered_map<int, Foo> map;
3535
map m;
36-
}
36+
}

test/vector_complex.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

test/vector_header.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

test/vector_nodefault.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

test/vector_primitive.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012 Matthew Endsley
2+
* Copyright 2012-1015 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

test/vector_shrinktofit.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*-
2-
* Copyright 2012-2014 Matthew Endsley
2+
* Copyright 2012-1015-2014 Matthew Endsley
33
* All rights reserved
44
*
55
* Redistribution and use in source and binary forms, with or without

0 commit comments

Comments
 (0)