Skip to content

Commit a597ee1

Browse files
committed
Export LdFlags, not RcppLdFlags, from NAMESPACE
Also correct manual page
1 parent 568bed4 commit a597ee1

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2013-10-08 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* NAMESPACE: Export LdFlags, not RcppLdFlags
4+
* man/LdFlags.Rd: Renamed from RcppLdFlags, and changed
5+
16
2013-10-06 John M Chambers <jmc@r-project.org>
27

38
* R/exposeClass.R: avoid warning from unclosed file()

NAMESPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export(Module,
2626
sourceCpp,
2727
compileAttributes,
2828
registerPlugin,
29-
RcppLdFlags,
29+
LdFlags,
3030
demangle,
3131
sizeof,
3232
cpp_object_initializer,

inst/NEWS.Rd

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
and some tests for \code{is_na()} and \code{is_finite()} have been
2020
corrected thanks to Thomas Tse.
2121
}
22+
\item Changes in R code:
23+
\itemize{
24+
\item Export linking helper function \code{LdFlags}, not \code{RcppLdFlags}
25+
}
2226
}
2327
}
2428

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
\name{RcppLdFlags}
2-
\alias{RcppLdFlags}
1+
\name{LdFlags}
2+
\alias{LdFlags}
33
\title{Provide Rcpp Linker Flags}
44
\description{
5-
\code{RcppLdFlags} returns the required flags and options for the the
5+
\code{LdFlags} returns the required flags and options for the the
66
system linker. This allows portable use of \pkg{Rcpp} as package
77
location as well as operating-system specific details are abstracted
88
away behind the interface of this function.
@@ -11,7 +11,7 @@
1111
\code{Makevars.win}) rather than in an interactive session.
1212
}
1313
\usage{
14-
RcppLdFlags(static=staticLinking())
14+
LdFlags(static=staticLinking())
1515
}
1616
\arguments{
1717
\item{static}{A boolean determining use of static (as opposed to

0 commit comments

Comments
 (0)