We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e328410 commit 52a8ad0Copy full SHA for 52a8ad0
2 files changed
ChangeLog
@@ -1,4 +1,8 @@
1
-2013-05-24 J.J. Allaire <jj@rstudio.org>
+2013-05-15 Kevin Ushey <kevinushey@gmail.com>
2
+
3
+ * src/attributes.cpp: Add a missing 'winslash = "/"'
4
5
+2013-05-14 J.J. Allaire <jj@rstudio.org>
6
7
* src/attributes.cpp: Correct handling of dependent file paths on Windows (use winslash = "/")
8
src/attributes.cpp
@@ -894,7 +894,7 @@ namespace attributes {
894
// normalize source file
895
Rcpp::Environment baseEnv = Rcpp::Environment::base_env();
896
Rcpp::Function normalizePath = baseEnv["normalizePath"];
897
- sourceFile = Rcpp::as<std::string>(normalizePath(sourceFile));
+ sourceFile = Rcpp::as<std::string>(normalizePath(sourceFile, "/"));
898
899
// parse dependencies
900
std::vector<FileInfo> dependencies;
0 commit comments