From cdc059d6a23058e0fa47afa7986c27bcf66249d8 Mon Sep 17 00:00:00 2001 From: Gareth Reakes <gareth@apache.org> Date: Thu, 15 May 2003 09:11:50 +0000 Subject: [PATCH] Changed initialization of defaults to cpp file. git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@174973 13f79535-47bb-0310-9956-ffa450edef68 --- src/xercesc/dom/impl/DOMConfigurationImpl.cpp | 2 +- src/xercesc/dom/impl/DOMConfigurationImpl.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xercesc/dom/impl/DOMConfigurationImpl.cpp b/src/xercesc/dom/impl/DOMConfigurationImpl.cpp index 3ee7db305..43f7f2675 100644 --- a/src/xercesc/dom/impl/DOMConfigurationImpl.cpp +++ b/src/xercesc/dom/impl/DOMConfigurationImpl.cpp @@ -114,7 +114,7 @@ const XMLCh DOMConfigurationImpl::fgSCHEMA_TYPE[] = { chLatin_s, chLatin_c, chLa /* schema-location */ const XMLCh DOMConfigurationImpl::fgSCHEMA_LOCATION[] = { chLatin_s, chLatin_c, chLatin_h, chLatin_e, chLatin_m, chLatin_a, chDash, chLatin_l, chLatin_o, chLatin_c, chLatin_a, chLatin_t, chLatin_i, chLatin_o, chLatin_n, chNull }; -//const unsigned short DOMConfigurationImpl::fDEFAULT_VALUES = 0x2596; +const unsigned short DOMConfigurationImpl::fDEFAULT_VALUES = 0x2596; DOMConfigurationImpl::DOMConfigurationImpl(): featureValues(fDEFAULT_VALUES), fTrue(new bool(true)), fFalse(new bool(false)), diff --git a/src/xercesc/dom/impl/DOMConfigurationImpl.hpp b/src/xercesc/dom/impl/DOMConfigurationImpl.hpp index 5d1aa5ba4..adf876107 100644 --- a/src/xercesc/dom/impl/DOMConfigurationImpl.hpp +++ b/src/xercesc/dom/impl/DOMConfigurationImpl.hpp @@ -178,7 +178,7 @@ public: // The default values for the boolean parameters // from CANONICAL_FORM to WHITESPACE_IN_ELEMENT_CONTENT // 10010110010110 = 0x2596 - static const unsigned short fDEFAULT_VALUES = 0x2596; + static const unsigned short fDEFAULT_VALUES; private: -- GitLab