We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e832d73 commit a91d878Copy full SHA for a91d878
1 file changed
test/expressions/expression_test_helpers.hpp
@@ -333,7 +333,8 @@ auto bad_wrong_value(const T& a) {
333
template <typename T>
334
auto bad_wrong_derivatives(const T& a) {
335
operands_and_partials<ref_type_t<T>> ops(a);
336
- if constexpr (!is_constant<T>::value && std::is_same<T, plain_type_t<T>>::value) {
+ if constexpr (!is_constant<T>::value
337
+ && std::is_same<T, plain_type_t<T>>::value) {
338
ops.edge1_.partials_[0] = 1234;
339
}
340
return ops.build(0);
0 commit comments