diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-06 10:29:12 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:38 -0400 |
commit | 7868a53b70bd08b79007386dbb5b1590bfb2e457 (patch) | |
tree | 8d1ed53963284abab144e1f25b7ef06ec9417c26 /src/commodity.h | |
parent | b95aa8d4ca5193187f34b7ec6db28a767f110ecd (diff) | |
download | fork-ledger-7868a53b70bd08b79007386dbb5b1590bfb2e457.tar.gz fork-ledger-7868a53b70bd08b79007386dbb5b1590bfb2e457.tar.bz2 fork-ledger-7868a53b70bd08b79007386dbb5b1590bfb2e457.zip |
Removed some unnecessary variables.
Diffstat (limited to 'src/commodity.h')
-rw-r--r-- | src/commodity.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/commodity.h b/src/commodity.h index 9efa0051..93c1f3be 100644 --- a/src/commodity.h +++ b/src/commodity.h @@ -73,14 +73,14 @@ class commodity_t #define COMMODITY_STYLE_NOMARKET 0x10 #define COMMODITY_STYLE_BUILTIN 0x20 - flags_t flags; - string symbol; - amount_t::precision_t precision; - optional<string> name; - optional<string> note; - optional<history_t> history; - optional<amount_t> smaller; - optional<amount_t> larger; + flags_t flags; + string symbol; + amount_t::precision_t precision; + optional<string> name; + optional<string> note; + optional<history_t> history; + optional<amount_t> smaller; + optional<amount_t> larger; public: explicit base_t() |