Kaydet (Commit) 459f9c9c authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Elide macros used only once

Change-Id: I1f1adf0790490a600ec164793ab7ee8ed0adc29e
üst 89edb26c
......@@ -58,9 +58,6 @@ using ::std::list;
using ::std::map;
using ::std::pair;
#define _INPUT_BUFFER_SIZE 4096
#define _OUTPUT_BUFFER_SIZE 4096
namespace XSLT
{
const char* const LibXSLTTransformer::PARAM_SOURCE_URL = "sourceURL";
......@@ -71,9 +68,9 @@ namespace XSLT
"targetBaseURL";
const char* const LibXSLTTransformer::PARAM_DOCTYPE_PUBLIC = "publicType";
const sal_Int32 Reader::OUTPUT_BUFFER_SIZE = _OUTPUT_BUFFER_SIZE;
const sal_Int32 Reader::OUTPUT_BUFFER_SIZE = 4096;
const sal_Int32 Reader::INPUT_BUFFER_SIZE = _INPUT_BUFFER_SIZE;
const sal_Int32 Reader::INPUT_BUFFER_SIZE = 4096;
/**
* ParserInputBufferCallback forwards IO call-backs to libxml stream IO.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment