Clearer variable name
diff --git a/tinyxml2.h b/tinyxml2.h
index 55a22d9..bfd2204 100755
--- a/tinyxml2.h
+++ b/tinyxml2.h
@@ -1613,7 +1613,7 @@
     friend class XMLElement;

 public:

     /// constructor

-    XMLDocument( bool processEntities = true, Whitespace = PRESERVE_WHITESPACE );

+    XMLDocument( bool processEntities = true, Whitespace whitespaceMode = PRESERVE_WHITESPACE );

     ~XMLDocument();

 

     virtual XMLDocument* ToDocument()				{

@@ -1677,7 +1677,7 @@
         return _processEntities;

     }

     Whitespace WhitespaceMode() const	{

-        return _whitespace;

+        return _whitespaceMode;

     }

 

     /**

@@ -1815,7 +1815,7 @@
     bool			_writeBOM;

     bool			_processEntities;

     XMLError		_errorID;

-    Whitespace		_whitespace;

+    Whitespace		_whitespaceMode;

     mutable StrPair	_errorStr1;

     mutable StrPair	_errorStr2;

     int             _errorLineNum;