@@ -2311,7 +2311,7 @@ void Synthesiser::emitCode(std::ostream& out, const Statement& stmt) {
2311
2311
2312
2312
auto args = op.getArguments ();
2313
2313
if (op.isStateful ()) {
2314
- out << name << " (&symTable, &recordTable" ;
2314
+ out << " functors:: " << name << " (&symTable, &recordTable" ;
2315
2315
for (auto & arg : args) {
2316
2316
out << " ," ;
2317
2317
dispatch (*arg, out);
@@ -2323,7 +2323,7 @@ void Synthesiser::emitCode(std::ostream& out, const Statement& stmt) {
2323
2323
if (op.getReturnType () == TypeAttribute::Symbol) {
2324
2324
out << " symTable.encode(" ;
2325
2325
}
2326
- out << name << " (" ;
2326
+ out << " functors:: " << name << " (" ;
2327
2327
2328
2328
for (std::size_t i = 0 ; i < args.size (); i++) {
2329
2329
if (i > 0 ) {
@@ -2524,7 +2524,7 @@ void Synthesiser::generateCode(std::ostream& sos, const std::string& id, bool& w
2524
2524
}
2525
2525
withSharedLibrary = true ;
2526
2526
});
2527
- os << " extern \" C\" {\n " ;
2527
+ os << " namespace functors { \n extern \" C\" {\n " ;
2528
2528
for (const auto & f : functors) {
2529
2529
// std::size_t arity = f.second.length() - 1;
2530
2530
const std::string& name = f.first ;
@@ -2558,7 +2558,7 @@ void Synthesiser::generateCode(std::ostream& sos, const std::string& id, bool& w
2558
2558
join (map (argsTypes, cppTypeDecl), " ," ));
2559
2559
}
2560
2560
}
2561
- os << " }\n " ;
2561
+ os << " }\n } \n " ;
2562
2562
os << " \n " ;
2563
2563
os << " namespace souffle {\n " ;
2564
2564
os << " static const RamDomain RAM_BIT_SHIFT_MASK = RAM_DOMAIN_SIZE - 1;\n " ;
0 commit comments