Reduced some compiler warnings.

This commit is contained in:
bubnikv 2016-11-16 22:09:00 +01:00
parent 901ec0ad37
commit c3af189045
3 changed files with 4 additions and 4 deletions

View file

@ -504,7 +504,7 @@ arrange(size_t total_parts, const Pointf &part_size, coordf_t dist, const Boundi
} }
cellsorder.insert(cellsorder.begin() + low, ArrangeItemIndex(index, c)); cellsorder.insert(cellsorder.begin() + low, ArrangeItemIndex(index, c));
} }
ENDSORT: true; ENDSORT: ;
} }
} }

View file

@ -29,7 +29,7 @@
long x_max() %code{% RETVAL = THIS->max.x; %}; long x_max() %code{% RETVAL = THIS->max.x; %};
long y_min() %code{% RETVAL = THIS->min.y; %}; long y_min() %code{% RETVAL = THIS->min.y; %};
long y_max() %code{% RETVAL = THIS->max.y; %}; long y_max() %code{% RETVAL = THIS->max.y; %};
std::string serialize() %code{% char buf[2048]; sprintf(buf, "%d,%d;%d,%d", THIS->min.x, THIS->min.y, THIS->max.x, THIS->max.y); RETVAL = buf; %}; std::string serialize() %code{% char buf[2048]; sprintf(buf, "%ld,%ld;%ld,%ld", THIS->min.x, THIS->min.y, THIS->max.x, THIS->max.y); RETVAL = buf; %};
%{ %{

View file

@ -49,7 +49,7 @@
%code{% RETVAL = new Point(THIS->negative()); %}; %code{% RETVAL = new Point(THIS->negative()); %};
bool coincides_with_epsilon(Point* point) bool coincides_with_epsilon(Point* point)
%code{% RETVAL = THIS->coincides_with_epsilon(*point); %}; %code{% RETVAL = THIS->coincides_with_epsilon(*point); %};
std::string serialize() %code{% char buf[2048]; sprintf(buf, "%d,%d", THIS->x, THIS->y); RETVAL = buf; %}; std::string serialize() %code{% char buf[2048]; sprintf(buf, "%ld,%ld", THIS->x, THIS->y); RETVAL = buf; %};
%{ %{
@ -87,7 +87,7 @@ Point::coincides_with(point_sv)
%code{% RETVAL = THIS->y; %}; %code{% RETVAL = THIS->y; %};
long z() long z()
%code{% RETVAL = THIS->z; %}; %code{% RETVAL = THIS->z; %};
std::string serialize() %code{% char buf[2048]; sprintf(buf, "%d,%d,%d", THIS->x, THIS->y, THIS->z); RETVAL = buf; %}; std::string serialize() %code{% char buf[2048]; sprintf(buf, "%ld,%ld,%ld", THIS->x, THIS->y, THIS->z); RETVAL = buf; %};
}; };
%name{Slic3r::Pointf} class Pointf { %name{Slic3r::Pointf} class Pointf {