Add explicit namespace to byte class

This avoids ambiguous compiler error
This commit is contained in:
Jimmy Morales 2018-10-30 12:16:15 -05:00 committed by GitHub
parent 501e0f8738
commit 2b380f5483
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ DecoderResult::DecoderResult(ArrayRef<byte> rawBytes,
Ref<String> text) Ref<String> text)
: rawBytes_(rawBytes), text_(text),charSet_("") {} : rawBytes_(rawBytes), text_(text),charSet_("") {}
ArrayRef<byte> DecoderResult::getRawBytes() { ArrayRef<zxing::byte> DecoderResult::getRawBytes() {
return rawBytes_; return rawBytes_;
} }