diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-11-26 08:05:02 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-11-26 18:24:09 +0100 |
commit | 2e93fb2ff592719dcfe4e073cfd1b1240692938e (patch) | |
tree | f88e3abb142b7974d8afa43b3c5e3741ceb61a10 /include | |
parent | 843aedb772223189aa2ba3b1e9ffb7dba86db1ac (diff) |
Fix typo
Change-Id: I6dbac66a590cf0cc388796bed918d68800a1537e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106652
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'include')
-rw-r--r-- | include/o3tl/safeint.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/o3tl/safeint.hxx b/include/o3tl/safeint.hxx index a5c212244c7c..0ed36c910fa3 100644 --- a/include/o3tl/safeint.hxx +++ b/include/o3tl/safeint.hxx @@ -236,7 +236,7 @@ make_unsigned(T value) // An implicit conversion from T2 to T1, useful in places where an explicit conversion from T2 to // T1 is needed (e.g., in list initialization, if the implicit conversion would be narrowing) but -// tools like -fsanitize=implict-conversion should still be able to detect truncation: +// tools like -fsanitize=implicit-conversion should still be able to detect truncation: template<typename T1, typename T2> constexpr T1 narrowing(T2 value) { return value; } } |