aboutsummaryrefslogtreecommitdiff
path: root/src/support/utility.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/utility.h')
-rw-r--r--src/support/utility.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/support/utility.h b/src/support/utility.h
deleted file mode 100644
index 4c63c72..0000000
--- a/src/support/utility.h
+++ /dev/null
@@ -1,18 +0,0 @@
-#ifndef INPUTXSLT_SRC_SUPPORT_UTILITY_H_
-#define INPUTXSLT_SRC_SUPPORT_UTILITY_H_
-
-namespace {
-
-inline std::string xalanToString(const xalan::XalanDOMString& text) {
- xalan::CharVectorType castHelper;
- text.transcode(castHelper);
-
- return std::string(
- castHelper.begin(),
- castHelper.end() - 1
- );
-}
-
-}
-
-#endif // INPUTXSLT_SRC_SUPPORT_UTILITY_H_