Skip to content

Commit 2c2eb89

Browse files
committed
minor spit and polish to some copyright headers
1 parent bc48e46 commit 2c2eb89

File tree

10 files changed

+26
-24
lines changed

10 files changed

+26
-24
lines changed

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
[ these were originally committed 17 May 2020 and have been rebased ]
1919
* src/barrier.cpp: Implement Rcpp_precious_{init,teardown,preserve,remove}
20-
* src/init.c: Register cpp_precious_{init,teardown,preserve,remove}
20+
* src/rcpp_init.c: Register cpp_precious_{init,teardown,preserve,remove}
2121
and call from R_{init,unload}_Rcpp
2222
* inst/include/Rcpp/routines.h: Declare Rcpp_precious_{init,teardown,
2323
preserve,remove}

inst/include/Rcpp/String.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
2-
//
1+
32
// String.h: Rcpp R/C++ interface class library -- single string
43
//
5-
// Copyright (C) 2012 - 2018 Dirk Eddelbuettel and Romain Francois
6-
// Copyright (C) 2021 Iñaki Ucar
4+
// Copyright (C) 2012 - 2020 Dirk Eddelbuettel and Romain Francois
5+
// Copyright (C) 2021 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
76
//
87
// This file is part of Rcpp.
98
//

inst/include/Rcpp/exceptions.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// exceptions.h: Rcpp R/C++ interface class library -- exceptions
33
//
44
// Copyright (C) 2010 - 2020 Dirk Eddelbuettel and Romain Francois
5+
// Copyright (C) 2021 - 2020 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
56
//
67
// This file is part of Rcpp.
78
//

inst/include/Rcpp/routines.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
1+
2+
// routines.h: Rcpp R/C++ interface class library -- callable function setup
23
//
3-
// Copyright (C) 2013 Romain Francois
4-
// Copyright (C) 2015 Dirk Eddelbuettel
5-
// Copyright (C) 2021 Iñaki Ucar
4+
// Copyright (C) 2013 - 2014 Romain Francois
5+
// Copyright (C) 2015 - 2020 Romain Francois and Dirk Eddelbuettel
6+
// Copyright (C) 2021 Romain Francois, Dirk Eddelbuettel and Iñaki Ucar
67
//
78
// This file is part of Rcpp.
89
//

inst/include/Rcpp/storage/PreserveStorage.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
2-
//
3-
// String.h: Rcpp R/C++ interface class library -- single string
1+
2+
// PreserveStorage.h: Rcpp R/C++ interface class library -- helper class
43
//
5-
// Copyright (C) 2013 Romain Francois
6-
// Copyright (C) 2021 Iñaki Ucar
4+
// Copyright (C) 2013 - 2020 Romain Francois
5+
// Copyright (C) 2021 Romain Francois and Iñaki Ucar
76
//
87
// This file is part of Rcpp.
98
//

inst/include/Rcpp/traits/named_object.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
2-
/* :tabSize=4:indentSize=4:noTabs=false:folding=explicit:collapseFolds=1: */
3-
//
1+
42
// named_object.h: Rcpp R/C++ interface class library -- named SEXP
53
//
6-
// Copyright (C) 2010 - 2017 Dirk Eddelbuettel and Romain Francois
7-
// Copyright (C) 2021 Iñaki Ucar
4+
// Copyright (C) 2010 - 2020 Dirk Eddelbuettel and Romain Francois
5+
// Copyright (C) 2021 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
86
//
97
// This file is part of Rcpp.
108
//

inst/include/Rcpp/unwindProtect.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
12
// unwind.h: Rcpp R/C++ interface class library -- Unwind Protect
23
//
3-
// Copyright (C) 2018 RStudio
4+
// Copyright (C) 2018 - 2020 RStudio
5+
// Copyright (C) 2021 RStudio, Dirk Eddelbuettel and Iñaki Ucar
46
//
57
// This file is part of Rcpp.
68
//

inst/include/RcppCommon.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
1+
22
//
33
// RcppCommon.h: Rcpp R/C++ interface class library -- common include and defines statements
44
//
55
// Copyright (C) 2008 - 2009 Dirk Eddelbuettel
6-
// Copyright (C) 2009 - 2017 Dirk Eddelbuettel and Romain Francois
7-
// Copyright (C) 2021 Iñaki Ucar
6+
// Copyright (C) 2009 - 2020 Dirk Eddelbuettel and Romain Francois
7+
// Copyright (C) 2021 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
88
//
99
// This file is part of Rcpp.
1010
//

src/barrier.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
12
// barrier.cpp: Rcpp R/C++ interface class library -- write barrier
23
//
34
// Copyright (C) 2010 - 2020 Dirk Eddelbuettel and Romain Francois
4-
// Copyright (C) 2021 Iñaki Ucar
5+
// Copyright (C) 2021 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
56
//
67
// This file is part of Rcpp.
78
//

src/rcpp_init.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
// Rcpp_init.cpp : Rcpp R/C++ interface class library -- Initialize and register
23
//
34
// Copyright (C) 2010 - 2020 John Chambers, Dirk Eddelbuettel and Romain Francois

0 commit comments

Comments
 (0)