* Add a newly created LangString. * @param s The name of the string. * @param ls The string to add. */
| 90 | * @param ls The string to add. |
| 91 | */ |
| 92 | void StringData::Add(std::shared_ptr<LangString> ls) |
| 93 | { |
| 94 | this->name_to_string[ls->name] = ls; |
| 95 | this->strings[ls->index] = std::move(ls); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Find a LangString based on the string name. |
no outgoing calls
no test coverage detected