+ fix unused parameter warning
This commit is contained in:
parent
c8b2031428
commit
e18fe4eccd
1 changed files with 5 additions and 1 deletions
|
@ -144,7 +144,11 @@ public:
|
|||
*/
|
||||
void set_size(int width, int height) { width_ = width; height_ = height; }
|
||||
/** Set Map object's srs. */
|
||||
virtual void set_map_srs(projection const& proj) { /* Not required when working with image coordinates. */ }
|
||||
virtual void set_map_srs(projection const& proj)
|
||||
{
|
||||
boost::ignore_unused_variable_warning(proj);
|
||||
}
|
||||
|
||||
/** Return the list of default properties. */
|
||||
metawriter_properties const& get_default_properties() const { return dflt_properties_;}
|
||||
protected:
|
||||
|
|
Loading…
Add table
Reference in a new issue