File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1- 2013-05-24 J.J. Allaire <jj@rstudio.org>
1+ 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>
26
37 * src/attributes.cpp: Correct handling of dependent file paths on Windows (use winslash = "/")
48
Original file line number Diff line number Diff line change @@ -894,7 +894,7 @@ namespace attributes {
894894 // normalize source file
895895 Rcpp::Environment baseEnv = Rcpp::Environment::base_env ();
896896 Rcpp::Function normalizePath = baseEnv[" normalizePath" ];
897- sourceFile = Rcpp::as<std::string>(normalizePath (sourceFile));
897+ sourceFile = Rcpp::as<std::string>(normalizePath (sourceFile, " / " ));
898898
899899 // parse dependencies
900900 std::vector<FileInfo> dependencies;
You can’t perform that action at this time.
0 commit comments