diff options
Diffstat (limited to 'modules/fbx/fbx_parser/FBXUtil.cpp')
| -rw-r--r-- | modules/fbx/fbx_parser/FBXUtil.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/modules/fbx/fbx_parser/FBXUtil.cpp b/modules/fbx/fbx_parser/FBXUtil.cpp index 4295cb6f5e..1f14a69099 100644 --- a/modules/fbx/fbx_parser/FBXUtil.cpp +++ b/modules/fbx/fbx_parser/FBXUtil.cpp @@ -121,7 +121,7 @@ static const uint8_t base64DecodeTable[128] = {  };  uint8_t DecodeBase64(char ch) { -	const auto idx = static_cast<uint8_t>(ch); +	const uint8_t idx = static_cast<uint8_t>(ch);  	if (idx > 127) {  		return 255;  	} |