Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2016-01-07 03:38:25 +0300
committerThomas Dinges <blender@dingto.org>2016-01-07 03:38:25 +0300
commit3da0af1464947df6d8002166332f2e74b0a85aaf (patch)
tree06e49b6e0d7a45bade8da420246896cb46fe1543 /intern/cycles/util/util_string.h
parentdb72639e1f452014b7ac4e251946ee716a3fb507 (diff)
Cycles: Add utility function to convert bool to string.
Diffstat (limited to 'intern/cycles/util/util_string.h')
-rw-r--r--intern/cycles/util/util_string.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/intern/cycles/util/util_string.h b/intern/cycles/util/util_string.h
index 6cb8d8df1e1..2b493a2b1a0 100644
--- a/intern/cycles/util/util_string.h
+++ b/intern/cycles/util/util_string.h
@@ -44,6 +44,7 @@ void string_replace(string& haystack, const string& needle, const string& other)
bool string_endswith(const string& s, const char *end);
string string_strip(const string& s);
string string_remove_trademark(const string& s);
+string bool_to_string(bool var);
CCL_NAMESPACE_END