mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[poincare] Fix LCM GCD bug on device compilation
Change-Id: I5ac11b7e72ede335db503b1d0f9c0be00710cd0b
This commit is contained in:
committed by
Émilie Feral
parent
53e204db3a
commit
56a9e8d74b
@@ -9,6 +9,7 @@
|
||||
#include <poincare/complex.h>
|
||||
#include <poincare/solver.h>
|
||||
#include <ion/storage.h>
|
||||
#include <utility>
|
||||
|
||||
namespace Poincare {
|
||||
|
||||
|
||||
@@ -64,4 +64,7 @@ Expression GreatCommonDivisor::shallowReduce(Context * context) {
|
||||
return result;
|
||||
}
|
||||
|
||||
template Evaluation<float> GreatCommonDivisorNode::templatedApproximate<float>(Context * context, Preferences::ComplexFormat complexFormat, Preferences::AngleUnit angleUnit) const;
|
||||
template Evaluation<double> GreatCommonDivisorNode::templatedApproximate<double>(Context * context, Preferences::ComplexFormat complexFormat, Preferences::AngleUnit angleUnit) const;
|
||||
|
||||
}
|
||||
|
||||
@@ -64,4 +64,7 @@ Expression LeastCommonMultiple::shallowReduce(Context * context) {
|
||||
return result;
|
||||
}
|
||||
|
||||
template Evaluation<float> LeastCommonMultipleNode::templatedApproximate<float>(Context * context, Preferences::ComplexFormat complexFormat, Preferences::AngleUnit angleUnit) const;
|
||||
template Evaluation<double> LeastCommonMultipleNode::templatedApproximate<double>(Context * context, Preferences::ComplexFormat complexFormat, Preferences::AngleUnit angleUnit) const;
|
||||
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
#include <ion/unicode/utf8_decoder.h>
|
||||
#include <utility>
|
||||
#include <algorithm>
|
||||
#include <stdlib.h>
|
||||
|
||||
namespace Poincare {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user