diff options
| author | 2017-01-06 15:37:43 +1100 | |
|---|---|---|
| committer | 2017-01-06 15:37:43 +1100 | |
| commit | c9647f6e28ee464928f44a03c8b4d859ed95f2c3 (patch) | |
| tree | 33523856e71efa29fab3932f8ff5675f4e803de1 /3rdparty | |
| parent | c399b811eae774ca5b8fb46452ca0df9d744d4ae (diff) | |
debugger: use 0o for octal prefix, and add support for binary with 0b a la C++, also support uppercase radix speifier
Diffstat (limited to '3rdparty')
| -rw-r--r-- | 3rdparty/bgfx/3rdparty/tinyexr/tinyexr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/3rdparty/bgfx/3rdparty/tinyexr/tinyexr.h b/3rdparty/bgfx/3rdparty/tinyexr/tinyexr.h index c0b84ef1b13..4482b82602f 100644 --- a/3rdparty/bgfx/3rdparty/tinyexr/tinyexr.h +++ b/3rdparty/bgfx/3rdparty/tinyexr/tinyexr.h @@ -7076,6 +7076,7 @@ static const char *ReadString(std::string *s, const char *ptr) { static bool ReadAttribute(std::string *name, std::string *type, std::vector<unsigned char> *data, size_t *marker_size, const char *marker, size_t size) { + using namespace bx; size_t name_len = strnlen(marker, size); if (name_len == size) { // String does not have a terminating character. |
