Merge pull request #91 from jimmymorales/bug-fix

Add explicit namespace to byte class
This commit is contained in:
Nikolaos Ftylitakis 2018-11-01 08:50:35 +02:00 committed by GitHub
commit e16429c233
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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