Kaydet (Commit) 5e6ba595 authored tarafından Michael Stahl's avatar Michael Stahl

warning C4310: cast truncates constant value

Change-Id: I3ebaec3953f86e8f42937e29fad54bafe87900fa
üst 426f4c8d
......@@ -545,7 +545,7 @@ void ConverterTest::testBase64()
tempSequence = tempSeq.getAsConstList();
doTestEncodeBase64("BQIDAAABAgM=", tempSequence);
doTestDecodeBase64(tempSequence, "BQIDAAABAgM=");
tempSeq[0] = sal_Int8(200);
tempSeq[0] = sal_Int8(sal_uInt8(200));
tempSeq[1] = sal_Int8(31);
tempSeq[2] = sal_Int8(77);
tempSeq[3] = sal_Int8(111);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment