summaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-10-26 19:09:24 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-10-26 19:09:24 -0400
commit7fae606d622d8cd463ce5f81f5d7872a4fdebc60 (patch)
treebe5550e492b20c135143c821fbc18cbd63c27060 /src/main.cc
parent92d1bbbe75df71731d458f5b48bcb0f145428920 (diff)
parent3fdd75fb5b2614f7dab29fd5ad5c9efed6e80b79 (diff)
downloadfork-ledger-7fae606d622d8cd463ce5f81f5d7872a4fdebc60.tar.gz
fork-ledger-7fae606d622d8cd463ce5f81f5d7872a4fdebc60.tar.bz2
fork-ledger-7fae606d622d8cd463ce5f81f5d7872a4fdebc60.zip
Merge branch 'next'
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/main.cc b/src/main.cc
index c9a922af..9f0e8690 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -37,21 +37,6 @@
using namespace ledger;
-namespace {
- strings_list split_arguments(char * line)
- {
- strings_list args;
-
- // jww (2009-02-04): This is too naive
- for (char * p = std::strtok(line, " \t");
- p;
- p = std::strtok(NULL, " \t"))
- args.push_back(p);
-
- return args;
- }
-}
-
#ifdef HAVE_BOOST_PYTHON
namespace ledger {
extern char * argv0;