We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
basic_string<char>
1 parent 58d0b5a commit 291d3c6Copy full SHA for 291d3c6
1 file changed
src/binary.cpp
@@ -71,7 +71,7 @@ extern "C" void initialize_llvm() {
71
extern "C" void export_asm() {
72
optimize(); // Apply any optimizations (will return if -O0)
73
74
- std::string targetTriple = llvm::sys::getDefaultTargetTriple();
+ std::basic_string<char> targetTriple = llvm::sys::getDefaultTargetTriple();
75
TheModule->setTargetTriple(targetTriple);
76
77
std::string error;
@@ -131,7 +131,7 @@ extern "C" void export_ir() {
131
extern "C" void generate_binary() {
132
133
134
135
136
137
0 commit comments