Skip to content
Snippets Groups Projects
Commit 4d622be1 authored by Alexander Karatarakis's avatar Alexander Karatarakis Committed by Antonio Sánchez
Browse files

[AutodiffScalar] Remove const when returning by value

clang-tidy: Return type 'const T' is 'const'-qualified at the top level,
which may reduce code readability without improving const correctness

The types are somewhat long, but the affected return types are of the form:
```
const T my_func() { /**/ }
```

Change to:
```
T my_func() { /**/ }
```
parent f49217e5
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment