Differences From Artifact [327ef75abe]:
- File
src/XMPPXMLElementBuilder.m
— part of check-in
[cd21ff1157]
at
2018-11-05 22:30:18
on branch trunk
— Kill #ifdef HAVE_CONFIG_H
There no longer is an Xcode project for which it is needed. (user: js, size: 1518) [annotate] [blame] [check-ins using]
To Artifact [7d9e681687]:
- File src/XMPPXMLElementBuilder.m — part of check-in [9919057cb8] at 2021-04-29 00:06:23 on branch trunk — Adjust to ObjFW style (user: js, size: 1517) [annotate] [blame] [check-ins using]
1 | /* | | | 1 2 3 4 5 6 7 8 9 | /* * Copyright (c) 2012, 2021, Jonathan Schleifer <js@nil.im> * * https://heap.zone/objxmpp/ * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * |
︙ | ︙ | |||
29 30 31 32 33 34 35 | @implementation XMPPXMLElementBuilder - (void)parser: (OFXMLParser *)parser foundProcessingInstructions: (OFString *)pi { @throw [OFMalformedXMLException exception]; } | | < | 29 30 31 32 33 34 35 36 37 38 39 40 | @implementation XMPPXMLElementBuilder - (void)parser: (OFXMLParser *)parser foundProcessingInstructions: (OFString *)pi { @throw [OFMalformedXMLException exception]; } - (void)parser: (OFXMLParser *)parser foundComment: (OFString *)comment { @throw [OFMalformedXMLException exception]; } @end |