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:
authorCampbell Barton <ideasman42@gmail.com>2018-12-30 16:57:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-30 16:58:54 +0300
commitbcf0c7143371deba9050eedd0f3474ae4fd91cc9 (patch)
tree6af51e0e4c3e62cfe44083ce0e43765132a34567 /source/blender/collada
parentd273e84c41bb0de9395458436bf2fc192585d398 (diff)
Cleanup: remove non-existing function declarations
Diffstat (limited to 'source/blender/collada')
-rw-r--r--source/blender/collada/collada_utils.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/collada/collada_utils.h b/source/blender/collada/collada_utils.h
index a79085f0282..91325ec5fd2 100644
--- a/source/blender/collada/collada_utils.h
+++ b/source/blender/collada/collada_utils.h
@@ -180,11 +180,13 @@ inline bool bc_startswith(std::string const & value, std::string const & startin
return (value.substr(0, starting.size()) == starting);
}
+#if 0 /* UNUSED */
inline bool bc_endswith(std::string const & value, std::string const & ending)
{
if (ending.size() > value.size()) return false;
return std::equal(ending.rbegin(), ending.rend(), value.rbegin());
}
+#endif
extern std::string bc_replace_string(std::string data, const std::string& pattern, const std::string& replacement);
extern std::string bc_url_encode(std::string data);