소스 검색

minor whitespace cleanup

Lee Thomason 14 년 전
부모
커밋
d11cd169e6
1개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. 6 2
      tinyxml2.h

+ 6 - 2
tinyxml2.h

@@ -1008,26 +1008,30 @@ public:
 		an errorID.
 	*/
 	int Parse( const char* xml );
+	
 	/**
 		Load an XML file from disk.
 		Returns XML_NO_ERROR (0) on success, or
 		an errorID.
-	*/
+	*/	
 	int LoadFile( const char* filename );
+	
 	/**
 		Load an XML file from disk. You are responsible
 		for providing and closing the FILE*.
 
 		Returns XML_NO_ERROR (0) on success, or
 		an errorID.
-	*/
+	*/	
 	int LoadFile( FILE* );
+	
 	/**
 		Save the XML file to disk.
 		Returns XML_NO_ERROR (0) on success, or
 		an errorID.
 	*/
 	int SaveFile( const char* filename );
+
 	/**
 		Save the XML file to disk.  You are responsible
 		for providing and closing the FILE*.