From bcf0c7143371deba9050eedd0f3474ae4fd91cc9 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 31 Dec 2018 00:57:47 +1100 Subject: Cleanup: remove non-existing function declarations --- source/blender/collada/collada_utils.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/collada') 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); -- cgit v1.2.3