Skip to content

Commit

Permalink
Fix compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-steinegger committed Jul 7, 2022
1 parent 2c73ab0 commit 31b156a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commons/TMaligner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ Matcher::result_t TMaligner::align(unsigned int dbKey, float *x, float *y, float
memcpy(target_x, x, sizeof(float) * targetLen);
memcpy(target_y, y, sizeof(float) * targetLen);
memcpy(target_z, z, sizeof(float) * targetLen);
Coordinates targetCaCords();
Coordinates targetCaCords;
targetCaCords.x = target_x;
targetCaCords.y = target_y;
targetCaCords.z = target_z;
Coordinates queryCaCords();
Coordinates queryCaCords;
queryCaCords.x = query_x;
queryCaCords.y = query_y;
queryCaCords.z = query_z;
Expand Down

0 comments on commit 31b156a

Please sign in to comment.