summaryrefslogtreecommitdiffstats
path: root/Source/cmXMLParser.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Port all cmOStringStream to std::ostringstream.Stephen Kelly2015-01-111-1/+1
| | | | All compilers hosting CMake support the std class.
* ctest_memcheck: Add support for memory and leak sanitizer.Bill Hoffman2014-07-161-2/+11
| | | | | | This adds support for memory and leak sanitizers. This is built into clang and gcc 4.8 and new compilers. It is activated with a -f switch during compile.
* stringapi: Miscellaneous char* parametersBen Boeckel2014-03-081-2/+2
|
* Use cmsys::[io]fstream instead of cmsys_ios::[io]fstream.Clinton Stimpson2014-01-071-1/+2
| | | | | Also use SystemTools::Fopen() instead of fopen(). This is to eventually support utf-8 filenames.
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-5/+5
| | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-14/+9
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* COMP: Fix build with system-installed expat 2.0.1Brad King2009-06-111-1/+1
| | | | | | | | In cmXMLParser::ReportXmlParseError we were accidentally passing a value of type 'XML_Parser*' to expat methods instead of 'XML_Parser'. It was not caught because XML_Parser was just 'void*' in the cmexpat version. Newer system-installed expat versions catch the error because XML_Parser is now a pointer to a real type. This correct the type.
* ENH: Added cmXMLParser::FindAttribute methodBrad King2009-02-241-0/+17
| | | | | This method will help subclasses look for element attributes in their StartElement methods.
* ENH: Allow cmXMLParser subclasses to report errorsBrad King2009-02-241-5/+10
| | | | | | This tells cmXMLParser to report error messages through virtual method cmXMLParser::ReportError so that subclasses can override the default report.
* STYLE: fix warningBill Hoffman2007-07-311-1/+2
|
* ENH: fix warning on win64Bill Hoffman2007-07-261-1/+1
|
* STYLE: fix compiler warningBill Hoffman2007-07-251-2/+3
|
* ENH: Add options to build with system utility libraries. Organize inclusion ↵Brad King2006-10-191-1/+1
| | | | of third party libraries into a single header per library. This addresses bug#3653.
* ENH: add support for win64 for visual studio 2005 ide and nmake, also fix ↵Bill Hoffman2006-03-301-2/+2
| | | | warnings produced by building for win64
* COMP: Try to resolve compile errors because of missing includes and wrong ↵Andy Cedilnik2005-01-181-0/+1
| | | | include path
* COMP: Use cmOStringStream not ostringstreamAndy Cedilnik2005-01-181-1/+1
|
* ENH: Add XML parserAndy Cedilnik2005-01-181-0/+217