abseil-cpp
abseil-cpp copied to clipboard
Abseil Common Libraries (C++)
Fixes #1114 More details in second commit message; first one has no changes other than alphabetizing the list for better legibility.
**Describe the bug** Upon upgrading the Visual Studio to 17.3 I get the following warnings: warning C4996: '_Header_ciso646': warning STL4036: is removed in C++20. You can define _SILENCE_CXX20_CISO646_REMOVED_WARNING or _SILENCE_ALL_CXX20_DEPRECATION_WARNINGS...
I cannot build abseil by aarch64 for arm53. 1.download new release tag. 2.build it by cmake. mkdir build cd build /home/tools/cmake-3.19.6-Linux-x86_64/bin/cmake -D CMAKE_C_COMPILER=/usr/bin/aarch64-linux-gnu-gcc -D CMAKE_CXX_COMPILER=/usr/bin/aarch64-linux-gnu-g++ .. build error!! aarch64-linux-gnu-g++: error:...
**Describe the bug** Let `Callback` be a type, whose `operator()` is `noexcept(false)` and actually throws. When an object of such a type is passed as the callback for `absl::Cleanup`, then...
The stack walking code in abseil for RISCV assumes a 16-byte alignment for the stack. This is guaranteed in the RISC-V ABI except for the ILP32E variant. This would be...
**Describe the bug** `absl/time/time.h` masks time.h/ctime if the current directory is in the include directory. This happens if, say, `$CPATH` contains an empty directory. **Steps to reproduce the bug** ```bash...
I'm currently using Abseil-app from the master branch. My code: ```c++ std::set controllers = absl::StrSplit(*content, ' '); // content: absl::StatusOr ``` Would trigger: ```shell In file included from /home/parallels/weiran-dev/rouster/third_party/abseil-cpp/absl/strings/str_split.h:48, from...
Main motivation for me is patter like: ```C++ void SomeCall(Args&&...); auto msg = StrCat(...); LOG(unique_id, msg); SomeCall(std::move(msg)); // internally have absl::StrCat for case when argument more than one or some...
**Describe the bug** I am building `abseil` on 10.6.8 Rosetta for `ppc` (well, in fact I has built it, but with an ugly solution of just editing away Intel flags)....
Given the importance of i18n in software and the lack any good Unicode support in C++, would you consider adding a Unicode library to Abseil? Copies of the Google utf8...