@mglisse:
> For number types using expression templates, we need to specify the
  template parameter
This commit is contained in:
Laurent Rineau 2017-07-10 17:43:14 +02:00
parent 6cb0c8a210
commit 9ec5afb7c5
1 changed files with 1 additions and 1 deletions

View File

@ -455,7 +455,7 @@ weighted_circumcenterC2( const RT &px, const RT &py, const We &pw,
RT dqw = RT(qw-pw);
RT drw = RT(rw-pw);
weighted_circumcenter_translateC2(qx-px, qy-py, dqw,rx-px, ry-py,drw,x, y);
weighted_circumcenter_translateC2<RT>(qx-px, qy-py, dqw,rx-px, ry-py,drw,x, y);
x += px;
y += py;
}