You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/xqilla/files/xqilla-2.2.4-gcc47.patch

16 lines
610 B

Fix build failure with GCC 4.7.
https://bugs.gentoo.org/441800
--- a/src/items/DatatypeFactoryTemplate.hpp
+++ b/src/items/DatatypeFactoryTemplate.hpp
@@ -79,7 +79,7 @@ public:
AnyAtomicType::Ptr createInstance(const XMLCh* value,
const DynamicContext* context) const
{
- return createInstanceNoCheck(DatatypeFactoryTemplate<TYPE>::getPrimitiveTypeURI(),
+ return this->createInstanceNoCheck(DatatypeFactoryTemplate<TYPE>::getPrimitiveTypeURI(),
DatatypeFactoryTemplate<TYPE>::getPrimitiveTypeName(), value, context);
}