[ox/std] Add missing declaration for String::String(const String&)

This commit is contained in:
Gary Talent 2020-03-19 01:56:44 -05:00
parent 464b541f67
commit aa1b5fa4cf

View File

@ -27,6 +27,8 @@ class String {
String(const char *str) noexcept;
String(String&) noexcept;
const String &operator=(const char *str) noexcept;
const String &operator=(char *str) noexcept;