We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I encountered the same bug as described in google/flatbuffers#6036, it was fixed back then here -- google/flatbuffers@82fac32, but not for 1.12 version
[settings] os=Macos os_build=Macos arch=armv8 arch_build=armv8 compiler=apple-clang compiler.version=19 compiler.libcxx=libc++ build_type=Release [options] [conf] [build_requires] [env]
just build flatbuffers from source using clang++-19 on MacOS -- this is what Conan package does.
The patch is pretty easy, I can even do this myself
error: overload resolution selected deleted operator '=' 1875 | buf_ = other.buf_; | ~~~~ ^ ~~~~~~~~~~ note: candidate function has been explicitly deleted 1002 | FLATBUFFERS_DELETE_FUNC(vector_downward &operator=(const vector_downward &)) | ^ note: candidate function not viable: expects an rvalue for 1st argument 834 | vector_downward &operator=(vector_downward &&other) {
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
I encountered the same bug as described in google/flatbuffers#6036, it was fixed back then here -- google/flatbuffers@82fac32, but not for 1.12 version
Package and Environment Details
Conan profile
[settings]
os=Macos
os_build=Macos
arch=armv8
arch_build=armv8
compiler=apple-clang
compiler.version=19
compiler.libcxx=libc++
build_type=Release
[options]
[conf]
[build_requires]
[env]
Steps to reproduce
just build flatbuffers from source using clang++-19 on MacOS -- this is what Conan package does.
The patch is pretty easy, I can even do this myself
Logs
error: overload resolution selected deleted operator '='
1875 | buf_ = other.buf_;
| ~~~~ ^ ~~~~~~~~~~
note: candidate function has been explicitly deleted
1002 | FLATBUFFERS_DELETE_FUNC(vector_downward &operator=(const vector_downward &))
| ^
note: candidate function not viable: expects an rvalue for 1st argument
834 | vector_downward &operator=(vector_downward &&other) {
The text was updated successfully, but these errors were encountered: