value.hpp - fix error C2375: redefinition; different linkage
This commit is contained in:
parent
a549803b5b
commit
9138d64725
1 changed files with 5 additions and 5 deletions
|
@ -38,11 +38,11 @@ namespace value_adl_barrier {
|
|||
|
||||
class MAPNIK_DECL value : public value_base
|
||||
{
|
||||
friend value operator+(value const&,value const&);
|
||||
friend value operator-(value const&,value const&);
|
||||
friend value operator*(value const&,value const&);
|
||||
friend value operator/(value const&,value const&);
|
||||
friend value operator%(value const&,value const&);
|
||||
friend MAPNIK_DECL value operator+(value const&,value const&);
|
||||
friend MAPNIK_DECL value operator-(value const&,value const&);
|
||||
friend MAPNIK_DECL value operator*(value const&,value const&);
|
||||
friend MAPNIK_DECL value operator/(value const&,value const&);
|
||||
friend MAPNIK_DECL value operator%(value const&,value const&);
|
||||
|
||||
public:
|
||||
value() = default;
|
||||
|
|
Loading…
Reference in a new issue