Skip to content

Commit 52d63cd

Browse files
committedMay 29, 2024
fix: version string final line break
1 parent d7f3b6d commit 52d63cd

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed
 

‎src/tool/ToolMain.cpp

+10-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ print_version(llvm::raw_ostream& os)
3535
os << project_name
3636
<< "\n " << project_description
3737
<< "\n version: " << project_version
38-
<< "\n built with LLVM " << LLVM_VERSION_STRING;
38+
<< "\n built with LLVM " << LLVM_VERSION_STRING
39+
<< "\n";
3940
}
4041

4142
int
@@ -60,7 +61,15 @@ mrdocs_main(int argc, char const** argv)
6061
toolArgs.reportLevel.getValue()));
6162

6263
// 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
6369
void* addressOfMain = reinterpret_cast<void*>(&main);
70+
#ifdef __GNUC__
71+
#pragma GCC diagnostic pop
72+
#endif
6473
auto exp = setupAddonsDir(
6574
toolArgs.addonsDir,argv[0], addressOfMain);
6675
if (!exp)

0 commit comments

Comments
 (0)
Please sign in to comment.