Jelajahi Sumber

fixes #5681 avoid c2440 error lose const qualifier

Duong Nguyen-Huu 7 tahun lalu
induk
melakukan
08bcab4936
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      bin/NativeTests/BigUIntTest.cpp

+ 1 - 1
bin/NativeTests/BigUIntTest.cpp

@@ -226,7 +226,7 @@ namespace BigUIntTest
     TEST_CASE("Init_From_Char_Of_Digits", "[BigUIntTest]")
     {
         BigUInt biDec;
-        char *charDigit;
+        const char *charDigit;
         bool result;
         int charDigitLength;