diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-11 07:22:41 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:43 -0400 |
commit | 1d065bf0dc7822a32632b474e14aa7c36146b427 (patch) | |
tree | d860538567856339fcbfb93d18dfbda6ea16132e /src/commodity.h | |
parent | 64219e948f78fff001a70151d213160cc1685a96 (diff) | |
download | fork-ledger-1d065bf0dc7822a32632b474e14aa7c36146b427.tar.gz fork-ledger-1d065bf0dc7822a32632b474e14aa7c36146b427.tar.bz2 fork-ledger-1d065bf0dc7822a32632b474e14aa7c36146b427.zip |
Copied over all of the C++ tests to Python again.
Diffstat (limited to 'src/commodity.h')
-rw-r--r-- | src/commodity.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commodity.h b/src/commodity.h index 6551d3b5..a5a13aeb 100644 --- a/src/commodity.h +++ b/src/commodity.h @@ -49,7 +49,7 @@ class annotated_commodity_t; class commodity_t : public delegates_flags<>, - equality_comparable1<commodity_t, noncopyable> + public equality_comparable1<commodity_t, noncopyable> { friend class commodity_pool_t; @@ -255,7 +255,7 @@ inline std::ostream& operator<<(std::ostream& out, const annotation_t& details) class annotated_commodity_t : public commodity_t, - equality_comparable<annotated_commodity_t, + public equality_comparable<annotated_commodity_t, equality_comparable2<annotated_commodity_t, commodity_t, noncopyable> > { |