Browse Source

remove unused member

xdg
Jørgen Lien Sellæg 5 years ago
parent
commit
86e364484a
  1. 2
      src/config.cpp
  2. 1
      src/config.hpp

2
src/config.cpp

@ -7,7 +7,7 @@
#include <iostream>
Config::Config() {
home_path = filesystem::get_home_path();
const auto home_path = filesystem::get_home_path();
if(home_path.empty())
throw std::runtime_error("Could not find home path");
home_juci_path = home_path / ".juci";

1
src/config.hpp

@ -133,7 +133,6 @@ public:
Source source;
Log log;
boost::filesystem::path home_path;
boost::filesystem::path home_juci_path;
private:

Loading…
Cancel
Save