VertexLoaderBase: Return debug strings by value

An out parameter for this sort of thing is a C++03 hold-over. This also
renames AppendToString to ToString.
This commit is contained in:
Lioncash
2017-03-26 22:17:37 -04:00
parent 8033a72f0b
commit 9859533ab4
4 changed files with 22 additions and 22 deletions

View File

@ -67,7 +67,7 @@ public:
virtual bool IsInitialized() = 0;
// For debugging / profiling
void AppendToString(std::string* dest) const;
std::string ToString() const;
virtual std::string GetName() const = 0;