error: dynamic_cast from rvalue to reference type
masukomi opened this issue · 0 comments
masukomi commented
problems compiling under macOS 12.4 with an M1 chip.
❯ make
c++ -g -O0 -c src/ByReferencePass.cpp -o obj/ByReferencePass.o -MMD -MF obj/ByReferencePass.d -MT obj/ByReferencePass.o -DSTDLIB_PATH="\"/Users/masukomi/workspace/reference/bish/lib/stdlib.bish\""
In file included from src/ByReferencePass.cpp:1:
In file included from src/ByReferencePass.h:4:
In file included from src/IR.h:10:
src/Util.h:19:10: error: dynamic_cast from rvalue to reference type 'std::ostringstream &' (aka 'basic_ostringstream<char> &')
return dynamic_cast<std::ostringstream &>((std::ostringstream() << i )).str();
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
make: *** [obj/ByReferencePass.o] Error 1