File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ class AnotherSimpleProgram final : public SimpleProgram {
5757
5858 throw Exception (" This is an example exception." );
5959
60+ // ReSharper disable once CppDFAUnreachableCode
6061 return ExitCode::OK;
6162 }
6263};
Original file line number Diff line number Diff line change 2121
2222#include " ElementsExamples/ClassExample.h" // for ClassExample
2323
24- #include < string> // for allocator, string
24+ #include < string> // for allocator, string
2525
2626#include < boost/test/unit_test.hpp>
2727
Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ vector<Path::Item> linkedModulePaths() {
202202 string pathname;
203203 unsigned inode;
204204 std::istringstream iss (line);
205- if (string address ; not (iss >> address >> perms >> offset >> dev >> inode >> pathname)) {
205+ if (string address; not (iss >> address >> perms >> offset >> dev >> inode >> pathname)) {
206206 continue ;
207207 }
208208 if (perms == " r-xp" and std::filesystem::exists (pathname)) {
You can’t perform that action at this time.
0 commit comments