Fix build

This commit is contained in:
Widevine Buildbot
2020-07-25 02:53:47 +00:00
parent 37bf78103e
commit 535930dc60
15 changed files with 249 additions and 12 deletions

View File

@@ -17,7 +17,9 @@ namespace util {
class ErrorSpace {
public:
std::string SpaceName() const { return space_name_func_(this); }
std::string String(int code) const { return code_to_string_func_(this, code); }
std::string String(int code) const {
return code_to_string_func_(this, code);
}
protected:
// typedef instead of using statements for SWIG compatibility.