diff options
author | Thiago Macieira <thiago.macieira@intel.com> | 2013-04-06 14:09:52 -0700 |
---|---|---|
committer | Thiago Macieira <thiago.macieira@intel.com> | 2013-04-07 18:19:41 +0200 |
commit | f1fee68a6716304be54d0219d25ad60bd048dc40 (patch) | |
tree | d484c89eea46179542919135f7fc5deb00a9cf87 /src/location/maps/qgeocameratiles.cpp | |
parent | 231b3ac1581d5aaf8bf3c6a70153c6560e215a00 (diff) | |
download | qtlocation-f1fee68a6716304be54d0219d25ad60bd048dc40.tar.gz |
Fix warnings in qtlocation found by GCC 4.8
qgeocameratiles.cpp:584:31: warning: typedef ‘iter’ locally defined but not used [-Wunused-local-typedefs]
qgeotiledmappingmanagerengine.cpp:237:51: warning: typedef ‘cache_iter’ locally defined but not used [-Wunused-local-typedefs]
locationvaluetypeprovider.h:73:10: warning: unused parameter ‘dataSize’ [-Wunused-parameter]
Change-Id: I7200cc6094ce55c807b3e6dbbd37b6b94f5e6a57
Reviewed-by: Aaron McCarthy <mccarthy.aaron@gmail.com>
Diffstat (limited to 'src/location/maps/qgeocameratiles.cpp')
-rw-r--r-- | src/location/maps/qgeocameratiles.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/location/maps/qgeocameratiles.cpp b/src/location/maps/qgeocameratiles.cpp index d5ce2f58..daff7235 100644 --- a/src/location/maps/qgeocameratiles.cpp +++ b/src/location/maps/qgeocameratiles.cpp @@ -581,7 +581,6 @@ QPair<Polygon, Polygon> QGeoCameraTilesPrivate::clipFootprintToMap(const Polygon double side = 1.0 * sideLength_; - typedef Polygon::iterator iter; typedef Polygon::const_iterator const_iter; const_iter i = footprint.constBegin(); |