Skip to content

Commit 89c58f9

Browse files
committed
Revert inadvertent commit
1 parent c29db39 commit 89c58f9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/include/defs.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ inline auto sum_of_squares(V const& a, U const& b) {
7777
*/
7878
template <class V, class U>
7979
inline auto L2(V const& a, U const& b) {
80-
// return std::sqrt(sum_of_squares(a, b));
81-
return sum_of_squares(a, b);
80+
return std::sqrt(sum_of_squares(a, b));
8281
}
8382

8483
/**

0 commit comments

Comments
 (0)