File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
dynadjust/dynadjust/dnaplot Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ void dna_plot::CleanupGnuplotFiles(const plotGraphMode& graphMode)
152
152
153
153
// delete
154
154
std::string system_file_cmd = ss.str ();
155
- std::system (system_file_cmd.c_str ());
155
+ ( void ) std::system (system_file_cmd.c_str ());
156
156
}
157
157
158
158
void dna_plot::CreategnuplotGraphEnvironment (project_settings* pprj, const plotGraphMode& graphMode)
@@ -1142,7 +1142,7 @@ void dna_plot::CreateGMTCommandFiles()
1142
1142
// change file permission to executable
1143
1143
#if defined(__linux) || defined(sun) || defined(__unix__) || defined(__APPLE__)
1144
1144
std::string system_file_cmd = _CHMOD_CMD_ + v_gmt_cmd_filenames_.at (block);
1145
- std::system (system_file_cmd.c_str ());
1145
+ ( void ) std::system (system_file_cmd.c_str ());
1146
1146
#endif
1147
1147
1148
1148
// break out for specific block (n) plots
@@ -2174,7 +2174,7 @@ void dna_plot::AggregateGMTPDFs()
2174
2174
// aggregate!
2175
2175
system_file_cmd = ss.str ();
2176
2176
2177
- std::system (system_file_cmd.c_str ());
2177
+ ( void ) std::system (system_file_cmd.c_str ());
2178
2178
}
2179
2179
2180
2180
@@ -2215,7 +2215,7 @@ void dna_plot::CleanupGMTFiles()
2215
2215
2216
2216
// delete
2217
2217
std::string clean_up_gmt_config_files = ss.str ();
2218
- std::system (clean_up_gmt_config_files.c_str ());
2218
+ ( void ) std::system (clean_up_gmt_config_files.c_str ());
2219
2219
2220
2220
}
2221
2221
You can’t perform that action at this time.
0 commit comments