diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/sfx2/groupid.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sfx2/groupid.hxx b/include/sfx2/groupid.hxx index 7df33ccec28a..0fc3a0b1b659 100644 --- a/include/sfx2/groupid.hxx +++ b/include/sfx2/groupid.hxx @@ -61,7 +61,7 @@ namespace std { std::size_t operator()(const SfxGroupId& k) const { - return std::hash<sal_uInt16>()((sal_uInt16)k); + return std::hash<sal_uInt16>()(static_cast<sal_uInt16>(k)); } }; } |