diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-11 18:02:47 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-11 18:02:47 -0500 |
commit | 31f85cc8039aa255f04fdccaa6bd9f54f0b65a99 (patch) | |
tree | ae46d5cf2d9912537f676223dc1ba22a45db2619 /src/utils.h | |
parent | a8bc4728fed33838aebe1a1e163bf0414c0511f8 (diff) | |
download | fork-ledger-31f85cc8039aa255f04fdccaa6bd9f54f0b65a99.tar.gz fork-ledger-31f85cc8039aa255f04fdccaa6bd9f54f0b65a99.tar.bz2 fork-ledger-31f85cc8039aa255f04fdccaa6bd9f54f0b65a99.zip |
Use ledger::string only if VERIFY_ON or BOOST_PYTHON
Diffstat (limited to 'src/utils.h')
-rw-r--r-- | src/utils.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/utils.h b/src/utils.h index 8ddc3c44..f0a165c2 100644 --- a/src/utils.h +++ b/src/utils.h @@ -181,6 +181,8 @@ void report_memory(std::ostream& out, bool report_all = false); namespace ledger { +#if defined(VERIFY_ON) || defined(HAVE_BOOST_PYTHON) + class string : public std::string { public: @@ -253,6 +255,12 @@ inline bool operator!=(const char* __lhs, const string& __rhs) inline bool operator!=(const string& __lhs, const char* __rhs) { return __lhs.compare(__rhs) != 0; } +#else // defined(VERIFY_ON) || defined(HAVE_BOOST_PYTHON) + +typedef std::string string; + +#endif // defined(VERIFY_ON) || defined(HAVE_BOOST_PYTHON) + extern string empty_string; strings_list split_arguments(const char * line); |