Kaydet (Commit) 249e66e0 authored tarafından Jochen Nitschke's avatar Jochen Nitschke Kaydeden (comit) Stephan Bergmann

Any can't be nested ...

... don't check for it

Change-Id: I0400ef365fdfcd8e1f516958225ae99289798f21
Reviewed-on: https://gerrit.libreoffice.org/30049Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst 4c76fd79
...@@ -166,24 +166,6 @@ bool isSubSet(const css::uno::Any& aSubSet, ...@@ -166,24 +166,6 @@ bool isSubSet(const css::uno::Any& aSubSet,
break; break;
case css::uno::TypeClass_ANY :
{
css::uno::Any v1;
css::uno::Any v2;
if (
(aSubSet >>= v1) &&
(aSet >>= v2)
)
{
bool bIs = (isSubSet(v1, v2));
FILTER_CONFIG_LOG_1_("isSubSet() ... check for packed any types => return %s\n", bIs ? "TRUE" : "FALSE")
return bIs;
}
}
break;
case css::uno::TypeClass_STRUCT : case css::uno::TypeClass_STRUCT :
{ {
css::beans::PropertyValue p1; css::beans::PropertyValue p1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment