Skip to content
Snippets Groups Projects
Verified Commit 0b36e315 authored by Santiago Ospina De Los Ríos's avatar Santiago Ospina De Los Ríos
Browse files

Use ADL to resolve std abs

parent 9e4c48ec
No related branches found
No related tags found
No related merge requests found
Pipeline #75733 failed
......@@ -32,7 +32,7 @@ abs(T t)
return (t < 0) ? -t : t;
} else {
using std::abs;
return std::abs(t);
return abs(t);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment