diff options
Diffstat (limited to 'src/report.h')
-rw-r--r-- | src/report.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/report.h b/src/report.h index ec4b194f..48a31d4e 100644 --- a/src/report.h +++ b/src/report.h @@ -231,19 +231,6 @@ public: "The init file '" << path << "' does not exist or is not readable"); } - value_t option_file(call_scope_t& args) { // f: - if (std::string(optarg) == "-") { - config->data_file = optarg; - } else { - std::string path = resolve_path(optarg); - if (access(path.c_str(), R_OK) != -1) - config->data_file = path; - else - throw_(std::invalid_argument, - "The ledger file '" << path << "' does not exist or is not readable"); - } - } - value_t option_cache(call_scope_t& args) { // : config->cache_file = resolve_path(optarg); } |