From be980c4ee46ca8b9eb8e0492cf8dd06ec8426348 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Fri, 25 Jul 2014 12:23:09 +0900 Subject: Freestyle: minor optimization for space by using a pointer to a const char array instead of std::string. --- source/blender/freestyle/intern/scene_graph/Rep.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/freestyle/intern/scene_graph') diff --git a/source/blender/freestyle/intern/scene_graph/Rep.h b/source/blender/freestyle/intern/scene_graph/Rep.h index 88ee0d2a801..9917af37aa4 100644 --- a/source/blender/freestyle/intern/scene_graph/Rep.h +++ b/source/blender/freestyle/intern/scene_graph/Rep.h @@ -127,7 +127,7 @@ public: return _Id; } - inline const string& getName() const + inline const char *getName() const { return _Name; } @@ -148,7 +148,7 @@ public: _Id = id; } - inline void setName(const string& name) + inline void setName(const char *name) { _Name = name; } @@ -161,7 +161,7 @@ public: private: BBox _BBox; Id _Id; - string _Name; + const char *_Name; FrsMaterial *_FrsMaterial; }; -- cgit v1.2.3