File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,8 @@ print_version(llvm::raw_ostream& os)
35
35
os << project_name
36
36
<< " \n " << project_description
37
37
<< " \n version: " << project_version
38
- << " \n built with LLVM " << LLVM_VERSION_STRING;
38
+ << " \n built with LLVM " << LLVM_VERSION_STRING
39
+ << " \n " ;
39
40
}
40
41
41
42
int
@@ -60,7 +61,15 @@ mrdocs_main(int argc, char const** argv)
60
61
toolArgs.reportLevel .getValue ()));
61
62
62
63
// Set up addons directory
64
+ #ifdef __GNUC__
65
+ #pragma GCC diagnostic push
66
+ #pragma GCC diagnostic ignored "-Wpedantic"
67
+ // error: ISO C++ forbids taking address of function ‘::main’
68
+ #endif
63
69
void * addressOfMain = reinterpret_cast <void *>(&main);
70
+ #ifdef __GNUC__
71
+ #pragma GCC diagnostic pop
72
+ #endif
64
73
auto exp = setupAddonsDir (
65
74
toolArgs.addonsDir ,argv[0 ], addressOfMain);
66
75
if (!exp )
You can’t perform that action at this time.
0 commit comments