diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2014-09-15 17:33:44 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2014-09-15 17:38:57 +0200 |
commit | a309ddbb9e92c3c9c9318735b26410413573dffc (patch) | |
tree | cba197be75e18bf5b3778320c64a21b6c51b8ea9 /include/com | |
parent | 72400181a0c8ee3d193e5b03ed6287d40d57084b (diff) |
"commas at the end of enumerator lists are a C++11 extension"
So says Clang, if -Wc++11-extensions is used, GCC warns with -Wpedantic.
Change-Id: I4f94b2f8d1b12644055dcd402f0ed8038d3a7171
Diffstat (limited to 'include/com')
-rw-r--r-- | include/com/sun/star/uno/Reference.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/com/sun/star/uno/Reference.h b/include/com/sun/star/uno/Reference.h index cedd4721cf18..47a5c171e2d1 100644 --- a/include/com/sun/star/uno/Reference.h +++ b/include/com/sun/star/uno/Reference.h @@ -136,7 +136,7 @@ enum UnoReference_Query { /** This enum value can be used for implicit interface query. */ - UNO_QUERY, + UNO_QUERY }; /** Enum defining UNO_QUERY_THROW for implicit interface query. If the demanded interface is unavailable, then a RuntimeException is thrown. @@ -145,7 +145,7 @@ enum UnoReference_QueryThrow { /** This enum value can be used for implicit interface query. */ - UNO_QUERY_THROW, + UNO_QUERY_THROW }; /** Enum defining UNO_SET_THROW for throwing if attempts are made to assign a null interface |