diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-07 19:48:29 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-07 19:48:29 -0400 |
commit | d1f13be1d25c62988f07a13356b3d488b67a8d78 (patch) | |
tree | cc791d610b642c33221b2784adcd9f93cb9252e2 | |
parent | 7df50c76bcb797d29c6d73fae5c55e6abc7409a6 (diff) | |
download | fork-ledger-d1f13be1d25c62988f07a13356b3d488b67a8d78.tar.gz fork-ledger-d1f13be1d25c62988f07a13356b3d488b67a8d78.tar.bz2 fork-ledger-d1f13be1d25c62988f07a13356b3d488b67a8d78.zip |
Fixed some incorrect #includes.
-rw-r--r-- | src/commodity.cc | 2 | ||||
-rw-r--r-- | test/unit/t_amount.cc | 2 | ||||
-rw-r--r-- | test/unit/t_commodity.cc | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/src/commodity.cc b/src/commodity.cc index ee441706..cfbab246 100644 --- a/src/commodity.cc +++ b/src/commodity.cc @@ -29,7 +29,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "amount.h" +#include "commodity.h" namespace ledger { diff --git a/test/unit/t_amount.cc b/test/unit/t_amount.cc index 33e2d85b..94553912 100644 --- a/test/unit/t_amount.cc +++ b/test/unit/t_amount.cc @@ -1,7 +1,7 @@ #include "t_amount.h" -#include "utils.h" #include "amount.h" +#include "commodity.h" using namespace ledger; diff --git a/test/unit/t_commodity.cc b/test/unit/t_commodity.cc index 5f72c195..8f57f51a 100644 --- a/test/unit/t_commodity.cc +++ b/test/unit/t_commodity.cc @@ -1,7 +1,6 @@ #include "t_commodity.h" -#include "utils.h" -#include "amount.h" +#include "commodity.h" using namespace ledger; |