summaryrefslogtreecommitdiff
path: root/Source/cmXMLWriter.h
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2021-01-22 10:38:19 -0500
committerBen Boeckel <ben.boeckel@kitware.com>2021-01-27 08:45:45 -0500
commitb3b6ede6a1e04d43c95eb816e6b710b63adc84b3 (patch)
treed393e0fc6d8593305a7521ce5a065b63150703e4 /Source/cmXMLWriter.h
parentcdfc4e31953274be9b745614b4b7620d365a7b5e (diff)
downloadcmake-b3b6ede6a1e04d43c95eb816e6b710b63adc84b3.tar.gz
clang-tidy: fix `readability-redundant-access-specifiers` warnings
Diffstat (limited to 'Source/cmXMLWriter.h')
-rw-r--r--Source/cmXMLWriter.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmXMLWriter.h b/Source/cmXMLWriter.h
index 8a32377a18..6e8eeb7300 100644
--- a/Source/cmXMLWriter.h
+++ b/Source/cmXMLWriter.h
@@ -75,7 +75,6 @@ private:
void CloseStartElement();
-private:
static cmXMLSafe SafeAttribute(const char* value) { return { value }; }
static cmXMLSafe SafeAttribute(std::string const& value)
@@ -121,7 +120,6 @@ private:
return value;
}
-private:
std::ostream& Output;
std::stack<std::string, std::vector<std::string>> Elements;
std::string IndentationElement;