Skip to content
Snippets Groups Projects
Commit 314188c0 authored by Van Dung Nguyen's avatar Van Dung Nguyen
Browse files

fix

parent e84b4f4b
Branches
Tags
No related merge requests found
......@@ -91,7 +91,7 @@ class SVector3 {
}
const double* data() const {return P.data();}
double* data() {return P.data();}
double axpy(const double a, const SVector3& y){
void axpy(const double a, const SVector3& y){
for (int i=0; i<3; i++){
P[i] += (a*y[i]);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment