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-11-25 00:01:30 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-25 00:01:53 +0300
commit059c119719e04283808d3c7076886e1a58874f6b (patch)
tree5296776b81111ef62e33687d4a9b4c6ab5e297ff /source/blender/collada/collada_utils.h
parentfa0fcbe4d6ca3f183f02395fe9ba18fb5ea87748 (diff)
parente742e0934de6384eeaf271ca4cfe99922ddbe3fb (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/collada/collada_utils.h')
-rw-r--r--source/blender/collada/collada_utils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/collada/collada_utils.h b/source/blender/collada/collada_utils.h
index 873318794a3..14d1948a42b 100644
--- a/source/blender/collada/collada_utils.h
+++ b/source/blender/collada/collada_utils.h
@@ -173,7 +173,7 @@ inline std::string bc_string_after(const std::string& s, const char c)
inline bool bc_startswith(std::string const & value, std::string const & starting)
{
- if (starting.size() > value.size())
+ if (starting.size() > value.size())
return false;
return (value.substr(0, starting.size()) == starting);
}
@@ -184,8 +184,8 @@ inline bool bc_endswith(std::string const & value, std::string const & ending)
return std::equal(ending.rbegin(), ending.rend(), value.rbegin());
}
-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);
+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);
extern void bc_match_scale(Object *ob, UnitConverter &bc_unit, bool scale_to_scene);
extern void bc_match_scale(std::vector<Object *> *objects_done, UnitConverter &unit_converter, bool scale_to_scene);