diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-02 21:46:35 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-02 21:46:35 -0400 |
commit | 56b3a49f63d35dd793b3a5dc1e11b04855b7953c (patch) | |
tree | e2c4f48dc200efe380f3a4e73342c7a128e503c2 /src/value.h | |
parent | 3339d69d17a921df80f2e007bc56d747d81c3eff (diff) | |
download | fork-ledger-56b3a49f63d35dd793b3a5dc1e11b04855b7953c.tar.gz fork-ledger-56b3a49f63d35dd793b3a5dc1e11b04855b7953c.tar.bz2 fork-ledger-56b3a49f63d35dd793b3a5dc1e11b04855b7953c.zip |
Fixed some warnings caused by using g++ 4.3.
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.h b/src/value.h index 93e96228..5b034d03 100644 --- a/src/value.h +++ b/src/value.h @@ -876,7 +876,7 @@ public: return as_sequence().end(); } - const std::size_t size() const { + std::size_t size() const { if (is_null()) return 0; else if (is_sequence()) |