Commit d5d5c667 authored by Stan Jenkins's avatar Stan Jenkins
Browse files

[Jenkins] auto-formatting by clang-format version 5.0.0-3~16.04.1 (tags/RELEASE_500/final)

No related merge requests found
Showing with 2 additions and 5 deletions
+2 -5
......@@ -80,17 +80,14 @@ complex<stan::math::var> operator*(const complex<stan::math::var>& z,
complex<stan::math::var> operator*(const complex<stan::math::var>& z,
double w) {
return complex<stan::math::var>{z.real() * w,
z.imag() * w};
return complex<stan::math::var>{z.real() * w, z.imag() * w};
}
complex<stan::math::var> operator*(double z,
const complex<stan::math::var>& w) {
return complex<stan::math::var>{z * w.real(),
z * w.imag()};
return complex<stan::math::var>{z * w.real(), z * w.imag()};
}
template <>
template <>
complex<stan::math::var>& complex<stan::math::var>::operator/=(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment