[PATCH] D126254: Add support for decoding base64.

Douglas Yung via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 23 17:48:01 PDT 2022


dyung added a comment.

Your change is failing to build on the PS4 Windows bot, can you take a look and revert if it takes time to fix?

https://lab.llvm.org/buildbot/#/builders/216/builds/6340

  FAILED: unittests/Support/CMakeFiles/SupportTests.dir/Base64Test.cpp.obj 
  C:\PROGRA~2\MICROS~1\2019\BUILDT~1\VC\Tools\MSVC\1429~1.301\bin\Hostx64\x64\cl.exe  /nologo /TP -DGTEST_HAS_RTTI=0 -DUNICODE -D_CRT_NONSTDC_NO_DEPRECATE -D_CRT_NONSTDC_NO_WARNINGS -D_CRT_SECURE_NO_DEPRECATE -D_CRT_SECURE_NO_WARNINGS -D_HAS_EXCEPTIONS=0 -D_SCL_SECURE_NO_DEPRECATE -D_SCL_SECURE_NO_WARNINGS -D_UNICODE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -Iunittests\Support -IC:\buildbot-root\llvm-clang-x86_64-sie-win\llvm-project\llvm\unittests\Support -Iinclude -IC:\buildbot-root\llvm-clang-x86_64-sie-win\llvm-project\llvm\include -IC:\buildbot-root\llvm-clang-x86_64-sie-win\llvm-project\llvm\utils\unittest\googletest\include -IC:\buildbot-root\llvm-clang-x86_64-sie-win\llvm-project\llvm\utils\unittest\googlemock\include /DWIN32 /D_WINDOWS   /Zc:inline /Zc:__cplusplus /Oi /bigobj /permissive- /W4 -wd4141 -wd4146 -wd4244 -wd4267 -wd4291 -wd4351 -wd4456 -wd4457 -wd4458 -wd4459 -wd4503 -wd4624 -wd4722 -wd4100 -wd4127 -wd4512 -wd4505 -wd4610 -wd4510 -wd4702 -wd4245 -wd4706 -wd4310 -wd4701 -wd4703 -wd4389 -wd4611 -wd4805 -wd4204 -wd4577 -wd4091 -wd4592 -wd4319 -wd4709 -wd4324 -w14062 -we4238 /Gw /MD /O2 /Ob2  /EHs-c- /GR- -UNDEBUG -std:c++14 /showIncludes /Founittests\Support\CMakeFiles\SupportTests.dir\Base64Test.cpp.obj /Fdunittests\Support\CMakeFiles\SupportTests.dir\ /FS -c C:\buildbot-root\llvm-clang-x86_64-sie-win\llvm-project\llvm\unittests\Support\Base64Test.cpp
  C:\buildbot-root\llvm-clang-x86_64-sie-win\llvm-project\llvm\include\llvm/Support/Base64.h(81): error C3493: 'Inv' cannot be implicitly captured because no default capture mode has been specified
  C:\buildbot-root\llvm-clang-x86_64-sie-win\llvm-project\llvm\unittests\Support\Base64Test.cpp(32): note: see reference to function template instantiation 'llvm::Error llvm::decodeBase64<std::vector<char,std::allocator<char>>>(llvm::StringRef,OutputBytes &)' being compiled
          with
          [
              OutputBytes=std::vector<char,std::allocator<char>>
          ]
  C:\buildbot-root\llvm-clang-x86_64-sie-win\llvm-project\llvm\include\llvm/Support/Base64.h(100): error C2064: term does not evaluate to a function taking 1 arguments
  C:\buildbot-root\llvm-clang-x86_64-sie-win\llvm-project\llvm\include\llvm/Support/Base64.h(100): error C2737: 'DecodedByte': const object must be initialized


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D126254/new/

https://reviews.llvm.org/D126254



More information about the llvm-commits mailing list