~ubuntu-branches/ubuntu/trusty/mapnik/trusty

« back to all changes in this revision

Viewing changes to include/mapnik/value.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Sauthier
  • Date: 2009-08-27 00:28:37 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090827002837-ztqzfg2rmclfh4i9
Tags: 0.6.1-0ubuntu1
* New upstream release.
* Change usr/lib to usr/lib* to enable build on 64 bits systems due to new
  configuration in SConstruct in :
  - debian/libmapnik-dev.install
  - debian/libmapnik0.6.install
  - debian/mapnik-plugin-base

Show diffs side-by-side

added added

removed removed

Lines of Context:
474
474
        
475
475
            value_type operator() (double lhs, int rhs) const
476
476
            {
477
 
               return fmod(lhs, rhs);
 
477
               return std::fmod(lhs, rhs);
478
478
            }
479
479
        
480
480
            value_type operator() (int lhs, double rhs) const
481
481
            {
482
 
               return fmod(lhs, rhs);
 
482
               return std::fmod(lhs, rhs);
483
483
            }
484
484
        
485
485
            value_type operator() (double lhs, double rhs) const
486
486
            {
487
 
               return fmod(lhs, rhs);
 
487
               return std::fmod(lhs, rhs);
488
488
            }
489
489
      };
490
490