From c9647f6e28ee464928f44a03c8b4d859ed95f2c3 Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Fri, 6 Jan 2017 15:37:43 +1100 Subject: debugger: use 0o for octal prefix, and add support for binary with 0b a la C++, also support uppercase radix speifier --- 3rdparty/bgfx/3rdparty/tinyexr/tinyexr.h | 1 + 1 file changed, 1 insertion(+) (limited to '3rdparty') 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 *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. -- cgit v1.2.3