mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-17 18:12:04 +01:00
tightened constness on DOMImplementation
This commit is contained in:
parent
aacb33a3bd
commit
67ad360326
1 changed files with 2 additions and 2 deletions
|
@ -46,14 +46,14 @@ class DOMImplementation
|
|||
|
||||
DocumentType<stringT, string_adaptorT> createDocumentType(const stringT& qualifiedName,
|
||||
const stringT& publicId,
|
||||
const stringT& systemId)
|
||||
const stringT& systemId) const
|
||||
{
|
||||
return impl_->createDocumentType(qualifiedName, publicId, systemId);
|
||||
} // createDocumentType
|
||||
|
||||
Document<stringT, string_adaptorT> createDocument(const stringT& namespaceURI,
|
||||
const stringT& qualifiedName,
|
||||
DocumentType<stringT, string_adaptorT> docType)
|
||||
DocumentType<stringT, string_adaptorT> docType) const
|
||||
{
|
||||
return impl_->createDocument(namespaceURI, qualifiedName, docType.dtImpl());
|
||||
} // createDocument
|
||||
|
|
Loading…
Reference in a new issue