Fixed warnings

release/4.3a0
Richard Roberts 2013-06-17 21:16:09 +00:00
parent d85a437c90
commit aa3e9b9230
1 changed files with 2 additions and 2 deletions

View File

@ -47,8 +47,8 @@ TEST(VariableIndexUnordered, augment) {
VariableIndexUnordered actual(fg1); VariableIndexUnordered actual(fg1);
actual.augment(fg2); actual.augment(fg2);
LONGS_EQUAL(16, actual.nEntries()); LONGS_EQUAL(16, (long)actual.nEntries());
LONGS_EQUAL(8, actual.nFactors()); LONGS_EQUAL(8, (long)actual.nFactors());
EXPECT(assert_equal(expected, actual)); EXPECT(assert_equal(expected, actual));
} }