You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building on LLVM 16 on Fedora 38, the compiler complains about the use of llvm::Optional and llvm::None in src/frontend/Frontend.cpp. I was able to fix it by replacing those with std::optional and std::nullopt and adding #include <optional> at the top.
The text was updated successfully, but these errors were encountered:
Building on LLVM 16 on Fedora 38, the compiler complains about the use of
llvm::Optional
andllvm::None
insrc/frontend/Frontend.cpp
. I was able to fix it by replacing those withstd::optional
andstd::nullopt
and adding#include <optional>
at the top.The text was updated successfully, but these errors were encountered: