1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

clang format apply

This commit is contained in:
Leonid Fedorov
2022-02-11 12:24:40 +00:00
parent 509f005be7
commit 7c808317dc
1367 changed files with 394342 additions and 413129 deletions

View File

@@ -16,9 +16,8 @@
MA 02110-1301, USA. */
/*
* $Id: ddlcleanup.cpp 967 2009-10-15 13:57:29Z rdempsey $
*/
* $Id: ddlcleanup.cpp 967 2009-10-15 13:57:29Z rdempsey $
*/
#include <iostream>
#include <fstream>
@@ -57,31 +56,28 @@ namespace fs = boost::filesystem;
namespace
{
void usage()
{
cout << "Usage: ddlcleanup" << endl;
}
cout << "Usage: ddlcleanup" << endl;
}
} // namespace
int main(int argc, char** argv)
{
int c;
int c;
while ((c = getopt(argc, argv, "h")) != EOF)
switch (c)
{
case 'h':
case '?':
default:
usage();
return (c == 'h' ? 0 : 1);
break;
}
while ((c = getopt(argc, argv, "h")) != EOF)
switch (c)
{
case 'h':
case '?':
default:
usage();
return (c == 'h' ? 0 : 1);
break;
}
return ddlcleanuputil::ddl_cleanup();
return ddlcleanuputil::ddl_cleanup();
}
// vim:ts=4 sw=4: