From 2b380f5483a7b2b9d905a14ab1e3e86f82ad0152 Mon Sep 17 00:00:00 2001 From: Jimmy Morales Date: Tue, 30 Oct 2018 12:16:15 -0500 Subject: [PATCH] Add explicit namespace to byte class This avoids ambiguous compiler error --- src/zxing/zxing/common/DecoderResult.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zxing/zxing/common/DecoderResult.cpp b/src/zxing/zxing/common/DecoderResult.cpp index 7e429fd..6090ff7 100644 --- a/src/zxing/zxing/common/DecoderResult.cpp +++ b/src/zxing/zxing/common/DecoderResult.cpp @@ -37,7 +37,7 @@ DecoderResult::DecoderResult(ArrayRef rawBytes, Ref text) : rawBytes_(rawBytes), text_(text),charSet_("") {} -ArrayRef DecoderResult::getRawBytes() { +ArrayRef DecoderResult::getRawBytes() { return rawBytes_; }