Skip to content

Commit

Permalink
Fix quoting of string literal
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener authored Jan 23, 2024
1 parent b72ed3e commit a92d335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion edm4hep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ components:
constexpr Vector3d(double xx, double yy, double zz) : x(xx),y(yy),z(zz) {}\n
constexpr Vector3d(const double* v) : x(v[0]),y(v[1]),z(v[2]) {}\n
constexpr Vector3d(const float* v) : x(v[0]),y(v[1]),z(v[2]) {}\n
[[ deprecated("This constructor will be removed again it is mainly here for an easier transition") ]]\n
[[ deprecated(\"This constructor will be removed again it is mainly here for an easier transition\") ]]\n
constexpr Vector3d(const Vector3f& v) : x(v.x), y(v.y), z(v.z) {}\n
constexpr bool operator==(const Vector3d& v) const { return (x==v.x&&y==v.y&&z==v.z) ; }\n
constexpr double operator[](unsigned i) const { return *( &x + i ) ; }\n
Expand Down

0 comments on commit a92d335

Please sign in to comment.