Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/duplicate_equals_t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void testDecoupling(const AreaSymbol& a, const AreaSymbol& b)
{
auto& pattern_a = a.getFillPattern(i);
auto& pattern_b = b.getFillPattern(i);
QVERIFY(&a != &b);
QVERIFY(&pattern_a != &pattern_b);
switch (pattern_a.type)
{
case AreaSymbol::FillPattern::LinePattern:
Expand Down
2 changes: 1 addition & 1 deletion test/file_format_t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ namespace
} \
else \
{ \
auto const diff = qstrlen(#b) - qstrlen(#a); \
int const diff = qstrlen(#b) - qstrlen(#a); \
auto const fill_a = QString().fill(QChar::Space, +diff); \
auto const fill_b = QString().fill(QChar::Space, -diff); \
QFAIL(QString::fromLatin1( \
Expand Down
2 changes: 1 addition & 1 deletion test/path_object_t.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ void PathObjectTest::calcIntersectionsTest()
parallel3.addCoordinate(MapCoord(30, -10));

PathObject::Intersections intersections_parallel_se;
intersections_parallel.reserve(2);
intersections_parallel_se.reserve(2);

intersection.coord = MapCoordF(20, 0);
intersection.length = 10;
Expand Down