commit | f458d265c1697b9c473d97ebf68f00b1fd4d98cc | [log] [tgz] |
---|---|---|
author | Lee Thomason <leethomason@gmail.com> | Mon Dec 26 22:47:25 2016 -0800 |
committer | Lee Thomason <leethomason@gmail.com> | Mon Dec 26 22:47:25 2016 -0800 |
tree | 3d5b9821472d0f7ee4e8d5a098fca8ae545da378 | |
parent | ce667c923324d277e10da40455ade87f199a7292 [diff] [blame] |
fix const. hopefully.
diff --git a/tinyxml2.h b/tinyxml2.h index 53f411a..8030e7d 100755 --- a/tinyxml2.h +++ b/tinyxml2.h
@@ -616,8 +616,8 @@ static void SetBool(const char* writeTrue, const char* writeFalse); private: - static char* writeBoolTrue; - static char* writeBoolFalse; + static const char* writeBoolTrue; + static const char* writeBoolFalse; };