summaryrefslogtreecommitdiffstats
path: root/Source/cmXMLParser.h
Commit message (Collapse)AuthorAgeFilesLines
* ctest_memcheck: Add support for memory and leak sanitizer.Bill Hoffman2014-07-161-1/+8
| | | | | | 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
|
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-12/+12
| | | | | | | | | | | | | | | | | 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.
* ENH: Added cmXMLParser::FindAttribute methodBrad King2009-02-241-0/+3
| | | | | This method will help subclasses look for element attributes in their StartElement methods.
* ENH: Allow cmXMLParser subclasses to report errorsBrad King2009-02-241-0/+3
| | | | | | This tells cmXMLParser to report error messages through virtual method cmXMLParser::ReportError so that subclasses can override the default report.
* ENH: fix warning on win64Bill Hoffman2007-07-261-2/+4
|
* STYLE: fix compiler warningBill Hoffman2007-07-251-1/+1
|
* STYLE: fix line lengthKen Martin2006-05-121-13/+14
|
* ENH: Add XML parserAndy Cedilnik2005-01-181-0/+108