fix axpy warning

release/4.3a0
Varun Agrawal 2021-12-20 16:52:46 -05:00
parent 5e3db76500
commit 1af040b9d1
2 changed files with 0 additions and 2 deletions

View File

@ -110,7 +110,6 @@ double dot(const Errors& a, const Errors& b) {
}
/* ************************************************************************* */
template<>
void axpy(double alpha, const Errors& x, Errors& y) {
Errors::const_iterator it = x.begin();
for(Vector& yi: y)

View File

@ -65,7 +65,6 @@ namespace gtsam {
/**
* BLAS level 2 style
*/
template <>
GTSAM_EXPORT void axpy(double alpha, const Errors& x, Errors& y);
/** print with optional string */