diff options
| author | John Hurst <jhurst@cinecert.com> | 2021-05-11 14:14:01 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-11 14:14:01 -0700 |
| commit | b71135239b4710bcdccd88adde161acf954706cb (patch) | |
| tree | 4cfa2c5123fac71f75178247c80911856e3087be /src/KM_xml.cpp | |
| parent | 8c51d30f81cc4a123ec75be93e67cedb48982e40 (diff) | |
| parent | 794d14855362ca5e3d5a99ed9bf86bd506a172c1 (diff) | |
Merge pull request #32 from cth103/warning-fixes
Warning fixes
Diffstat (limited to 'src/KM_xml.cpp')
| -rw-r--r-- | src/KM_xml.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/KM_xml.cpp b/src/KM_xml.cpp index 68839a1..5037391 100644 --- a/src/KM_xml.cpp +++ b/src/KM_xml.cpp @@ -1047,14 +1047,14 @@ Kumu::XMLElement::ParseFirstFromString(const char* document, ui32_t doc_len) // bool -Kumu::XMLElement::ParseString(const char* document, ui32_t doc_len) +Kumu::XMLElement::ParseString(const char*, ui32_t) { DefaultLogSink().Error("Kumu compiled without XML parser support.\n"); return false; } bool -Kumu::XMLElement::ParseFirstFromString(const char* document, ui32_t doc_len) +Kumu::XMLElement::ParseFirstFromString(const char*, ui32_t) { DefaultLogSink().Error("Kumu compiled without XML parser support.\n"); return false; |
