Skip to content

Commit 6eb3ad0

Browse files
Bernhard ScholzBernhard Scholz
Bernhard Scholz
authored and
Bernhard Scholz
committed
Fix#2223
1 parent d1522e0 commit 6eb3ad0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/synthesiser/Synthesiser.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -2311,7 +2311,7 @@ void Synthesiser::emitCode(std::ostream& out, const Statement& stmt) {
23112311

23122312
auto args = op.getArguments();
23132313
if (op.isStateful()) {
2314-
out << name << "(&symTable, &recordTable";
2314+
out << "functors::" << name << "(&symTable, &recordTable";
23152315
for (auto& arg : args) {
23162316
out << ",";
23172317
dispatch(*arg, out);
@@ -2323,7 +2323,7 @@ void Synthesiser::emitCode(std::ostream& out, const Statement& stmt) {
23232323
if (op.getReturnType() == TypeAttribute::Symbol) {
23242324
out << "symTable.encode(";
23252325
}
2326-
out << name << "(";
2326+
out << "functors::" << name << "(";
23272327

23282328
for (std::size_t i = 0; i < args.size(); i++) {
23292329
if (i > 0) {
@@ -2524,7 +2524,7 @@ void Synthesiser::generateCode(std::ostream& sos, const std::string& id, bool& w
25242524
}
25252525
withSharedLibrary = true;
25262526
});
2527-
os << "extern \"C\" {\n";
2527+
os << "namespace functors {\n extern \"C\" {\n";
25282528
for (const auto& f : functors) {
25292529
// std::size_t arity = f.second.length() - 1;
25302530
const std::string& name = f.first;
@@ -2558,7 +2558,7 @@ void Synthesiser::generateCode(std::ostream& sos, const std::string& id, bool& w
25582558
join(map(argsTypes, cppTypeDecl), ","));
25592559
}
25602560
}
2561-
os << "}\n";
2561+
os << "}\n}\n";
25622562
os << "\n";
25632563
os << "namespace souffle {\n";
25642564
os << "static const RamDomain RAM_BIT_SHIFT_MASK = RAM_DOMAIN_SIZE - 1;\n";

0 commit comments

Comments
 (0)