return 0;
}
+// This has an uncaught exception. Even if the exception is caught, the program
+// would need to be terminated, so the warning is simply suppressed.
+// coverity[root_function:SUPPRESS]
int main(int argc, char *argv[])
{
string tenant = "Redhat";
}
}
+// This has an uncaught exception. Even if the exception is caught, the program
+// would need to be terminated, so the warning is simply suppressed.
+// coverity[root_function:SUPPRESS]
int main(int argc, const char **argv)
{
auto args = argv_to_vec(argc, argv);
using namespace std;
+// This has an uncaught exception. Even if the exception is caught, the program
+// would need to be terminated, so the warning is simply suppressed.
+// coverity[root_function:SUPPRESS]
int main(int argc, char *argv[])
{
auto args = argv_to_vec(argc, argv);
}
};
-
+// This has an uncaught exception. Even if the exception is caught, the program
+// would need to be terminated, so the warning is simply suppressed.
+// coverity[root_function:SUPPRESS]
int main(int argc, char **argv) {
JSONParser parser;
/*
* start up the RADOS connection and then handle HTTP messages as they come in
+ *
+ * This has an uncaught exception. Even if the exception is caught, the program
+ * would need to be terminated, so the warning is simply suppressed.
*/
+// coverity[root_function:SUPPRESS]
int main(int argc, char *argv[])
{
int r{0};
using namespace std;
+
+// This has an uncaught exception. Even if the exception is caught, the program
+// would need to be terminated, so the warning is simply suppressed.
+// coverity[root_function:SUPPRESS]
int main(int argc, char **argv) {
RGWMultiXMLParser parser;
generic_server_usage();
}
+// This has an uncaught exception. Even if the exception is caught, the program
+// would need to be terminated, so the warning is simply suppressed.
+// coverity[root_function:SUPPRESS]
int main(const int argc, const char **argv)
{
auto args = argv_to_vec(argc, argv);
<< std::endl;
}
+// This has an uncaught exception. Even if the exception is caught, the program
+// would need to be terminated, so the warning is simply suppressed.
+// coverity[root_function:SUPPRESS]
int main(int argc, const char** argv)
{
std::string_view cmdname = argv[0];
generic_client_usage();
}
+// This has an uncaught exception. Even if the exception is caught, the program
+// would need to be terminated, so the warning is simply suppressed.
+// coverity[root_function:SUPPRESS]
int main(int argc, char **argv)
{
auto args = argv_to_vec(argc, argv);