1
0
mirror of https://github.com/leethomason/tinyxml2.git synced 2026-07-29 15:13:01 +04:00

Update SetText method parameters to use int32_t and uint32_t.

This change updates the SetText method in both the .cpp and .h files to use int32_t and uint32_t types for better consistency and clarity.
This commit is contained in:
Franz Höpfinger
2024-05-30 19:53:50 +02:00
parent e269b2e91f
commit 8fed517e5d
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1586,9 +1586,9 @@ public:
*/
void SetText( const char* inText );
/// Convenience method for setting text inside an element. See SetText() for important limitations.
void SetText( int value );
void SetText( int32_t value );
/// Convenience method for setting text inside an element. See SetText() for important limitations.
void SetText( unsigned value );
void SetText( uint32_t value );
/// Convenience method for setting text inside an element. See SetText() for important limitations.
void SetText(int64_t value);
/// Convenience method for setting text inside an element. See SetText() for important limitations.