Skip to content

Commit

Permalink
Merge branch 'master' of github.com:rstudio/rstudio
Browse files Browse the repository at this point in the history
  • Loading branch information
jjallaire committed Dec 14, 2011
2 parents 8a021bf + e347d6c commit f3b1416
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions src/cpp/session/SessionOptions.cpp
Expand Up @@ -179,11 +179,9 @@ core::ProgramStatus Options::read(int argc, char * const argv[])
("external-rpostback-path",
value<std::string>(&rpostbackPath_)->default_value("bin/postback/rpostback"),
"Path to rpostback executable")
#ifdef _WIN32
("external-consoleio-path",
value<std::string>(&consoleIoPath_)->default_value("bin/consoleio.exe"),
"Path to consoleio executable")
#endif
;

// user options (default user identity to current username)
Expand Down
4 changes: 0 additions & 4 deletions src/cpp/session/include/session/SessionOptions.hpp
Expand Up @@ -178,12 +178,10 @@ class Options : boost::noncopyable
return core::FilePath(rpostbackPath_.c_str());
}

#ifdef _WIN32
core::FilePath consoleIoPath() const
{
return core::FilePath(consoleIoPath_.c_str());
}
#endif

// user info
std::string userIdentity() const
Expand Down Expand Up @@ -297,9 +295,7 @@ class Options : boost::noncopyable

// external
std::string rpostbackPath_;
#ifdef _WIN32
std::string consoleIoPath_;
#endif

// user info
std::string userIdentity_;
Expand Down

0 comments on commit f3b1416

Please sign in to comment.