diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-03-22 15:03:32 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-03-22 15:03:32 -0300 |
commit | 0302ea5b821939c68529195d223c35bc7f3ce7b1 (patch) | |
tree | 762bf92595b88d67c7ddade880942574eac37d7d /core/ustring.h | |
parent | 7436f0bb37b43d39ac7b7c72d7761e089b8bdc02 (diff) | |
parent | 748311ec42b6818f5481ad4ac4152f40ff1a8a6f (diff) | |
download | redot-engine-0302ea5b821939c68529195d223c35bc7f3ce7b1.tar.gz |
Merge pull request #1396 from Spooner/fix_sprintf_errors
Fix sprintf errors
Diffstat (limited to 'core/ustring.h')
-rw-r--r-- | core/ustring.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ustring.h b/core/ustring.h index c7da26a695..f79e5ce306 100644 --- a/core/ustring.h +++ b/core/ustring.h @@ -130,7 +130,7 @@ public: String pad_zeros(int p_digits) const; String lpad(int min_length,const String& character=" ") const; String rpad(int min_length,const String& character=" ") const; - String sprintf(const Array& values) const; + String sprintf(const Array& values, bool* error) const; static String num(double p_num,int p_decimals=-1); static String num_scientific(double p_num); static String num_real(double p_num); |