Skip to content

Commit c60ca07

Browse files
committed
Merge remote-tracking branch 'RcppCore/master'
2 parents 211dfcd + d360ba2 commit c60ca07

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2016-08-04 James J Balamuta <[email protected]>
2+
3+
* src/attributes.cpp: Correct variable re-declaration
4+
15
2016-08-03 Dirk Eddelbuettel <[email protected]>
26

37
* .gitattributes: Added to have ChangeLog and NEWS.Rd merge via union

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 0.12.6.2
4-
Date: 2016-07-31
3+
Version: 0.12.6.4
4+
Date: 2016-08-04
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey,
66
Qiang Kou, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

inst/NEWS.Rd

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
\item Improved Autogeneration Warning for RcppExports
1717
(James Balamuta in \ghpr{528} addressing issue \ghit{526}).
1818
\item Fixed invalid C++ prefix identifiers in auto-generated code
19-
(James Balamuta in \ghpr{528} addressing issue \ghit{387}).
19+
(James Balamuta in \ghpr{528} and \ghpr{531} addressing issue
20+
\ghit{387}).
21+
\item String constructors now set default UTF-8 encoding (Qiang Kou in
22+
\ghpr{529} fixing \ghit{263}).
2023
}
2124
\item Changes in Rcpp unit tests
2225
\itemize{

src/attributes.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2638,9 +2638,9 @@ namespace attributes {
26382638
}
26392639
ostr << "));" << std::endl;
26402640
ostr << " }" << std::endl;
2641-
ostr << " Rboolean rcpp_isError_gen = Rf_inherits(rcpp_result_gen, \"interrupted-error\");"
2641+
ostr << " Rboolean rcpp_isInterrupt_gen = Rf_inherits(rcpp_result_gen, \"interrupted-error\");"
26422642
<< std::endl
2643-
<< " if (rcpp_isError_gen) {" << std::endl
2643+
<< " if (rcpp_isInterrupt_gen) {" << std::endl
26442644
<< " UNPROTECT(1);" << std::endl
26452645
<< " Rf_onintr();" << std::endl
26462646
<< " }" << std::endl

0 commit comments

Comments
 (0)