summaryrefslogtreecommitdiffstats
path: root/core/core_bind.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-06-11 15:56:59 +0200
committerGitHub <noreply@github.com>2021-06-11 15:56:59 +0200
commit6107d9e180a51e3c9feb4fe8c818321c292ff86b (patch)
treeb68193719f071aa98f38bb2cefc182b953b10963 /core/core_bind.h
parente82a1113abbb72504e9b12a131738bedb40d3a28 (diff)
parent09a905ca8066c86951b23023a9e1950f277ae8f4 (diff)
downloadredot-engine-6107d9e180a51e3c9feb4fe8c818321c292ff86b.tar.gz
Merge pull request #34566 from Heikki00/34541_to_json_precision
Increased String::num default decimal precision
Diffstat (limited to 'core/core_bind.h')
-rw-r--r--core/core_bind.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/core_bind.h b/core/core_bind.h
index c8b0a4d7da..7323320684 100644
--- a/core/core_bind.h
+++ b/core/core_bind.h
@@ -706,7 +706,7 @@ protected:
public:
static _JSON *get_singleton() { return singleton; }
- String print(const Variant &p_value, const String &p_indent = "", bool p_sort_keys = false);
+ String print(const Variant &p_value, const String &p_indent = "", bool p_sort_keys = false, bool p_full_precision = false);
Ref<JSONParseResult> parse(const String &p_json);
_JSON() { singleton = this; }