summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2020-05-11 12:20:48 +0300
committerAndrei Karas <akaras@inbox.ru>2020-05-11 12:20:48 +0300
commitf8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea (patch)
tree6029f4050a42609fb5045565ea7668cd84e32a3d
parent595155193e6f9202d240f0798a39e33a6779366a (diff)
downloadplus-f8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea.tar.gz
plus-f8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea.tar.bz2
plus-f8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea.tar.xz
plus-f8a9cbf78a0ae2f1d571f773275cd6493fb1a4ea.zip
Remove useless struct keyword
-rw-r--r--src/chatlogger.cpp2
-rw-r--r--src/commandline.cpp2
-rw-r--r--src/fs/files.cpp4
-rw-r--r--src/fs/paths.cpp2
-rw-r--r--src/fs/virtfs/fsdir.cpp8
-rw-r--r--src/game.cpp2
-rw-r--r--src/gui/windows/whoisonline.cpp2
-rw-r--r--src/resources/db/unitsdb.cpp2
8 files changed, 12 insertions, 12 deletions
diff --git a/src/chatlogger.cpp b/src/chatlogger.cpp
index 4b26db452..76e765692 100644
--- a/src/chatlogger.cpp
+++ b/src/chatlogger.cpp
@@ -129,7 +129,7 @@ std::string ChatLogger::getDir() const
char buffer [81];
time(&rawtime);
- struct tm *const timeinfo = localtime(&rawtime);
+ tm *const timeinfo = localtime(&rawtime);
strftime(buffer, 79, "%Y-%m/%d", timeinfo);
diff --git a/src/commandline.cpp b/src/commandline.cpp
index 99cd04e0f..ba0a54d69 100644
--- a/src/commandline.cpp
+++ b/src/commandline.cpp
@@ -137,7 +137,7 @@ void parseOptions(const int argc, char *const argv[])
{
const char *const optstring = "hvud:U:P:Dc:p:y:l:L:C:s:t:T:a:r:e:V";
- const struct option long_options[] =
+ const option long_options[] =
{
{ "config-dir", required_argument, nullptr, 'C' },
{ "data", required_argument, nullptr, 'd' },
diff --git a/src/fs/files.cpp b/src/fs/files.cpp
index 1ff57ad9f..fcce1c0ea 100644
--- a/src/fs/files.cpp
+++ b/src/fs/files.cpp
@@ -271,7 +271,7 @@ void Files::saveTextFile(const std::string &path,
void Files::deleteFilesInDirectory(std::string path)
{
path = pathJoin(path, dirSeparator);
- const struct dirent *next_file = nullptr;
+ const dirent *next_file = nullptr;
DIR *const dir = opendir(path.c_str());
if (dir != nullptr)
@@ -296,7 +296,7 @@ void Files::enumFiles(StringVect &files,
if (dir != nullptr)
{
- const struct dirent *next_file = nullptr;
+ const dirent *next_file = nullptr;
while ((next_file = readdir(dir)) != nullptr)
{
const std::string file = next_file->d_name;
diff --git a/src/fs/paths.cpp b/src/fs/paths.cpp
index a639dacba..273dbd59f 100644
--- a/src/fs/paths.cpp
+++ b/src/fs/paths.cpp
@@ -264,7 +264,7 @@ std::string getHomePath()
if (path == nullptr)
{
const uid_t uid = getuid();
- const struct passwd *const pw = getpwuid(uid);
+ const passwd *const pw = getpwuid(uid);
if (pw != nullptr &&
pw->pw_dir != nullptr)
{
diff --git a/src/fs/virtfs/fsdir.cpp b/src/fs/virtfs/fsdir.cpp
index dcac978c7..285104146 100644
--- a/src/fs/virtfs/fsdir.cpp
+++ b/src/fs/virtfs/fsdir.cpp
@@ -194,7 +194,7 @@ namespace FsDir
{
const std::string path = static_cast<DirEntry*>(entry)->rootSubDir +
dirName;
- const struct dirent *next_file = nullptr;
+ const dirent *next_file = nullptr;
DIR *const dir = opendir(path.c_str());
if (dir != nullptr)
{
@@ -538,7 +538,7 @@ namespace FsDir
{
const std::string path = static_cast<DirEntry*>(entry)->rootSubDir +
dirName;
- const struct dirent *next_file = nullptr;
+ const dirent *next_file = nullptr;
DIR *const dir = opendir(path.c_str());
if (dir != nullptr)
{
@@ -588,7 +588,7 @@ namespace FsDir
{
const std::string path = static_cast<DirEntry*>(entry)->rootSubDir +
dirName;
- const struct dirent *next_file = nullptr;
+ const dirent *next_file = nullptr;
DIR *const dir = opendir(path.c_str());
if (dir != nullptr)
{
@@ -638,7 +638,7 @@ namespace FsDir
{
const std::string path = static_cast<DirEntry*>(entry)->rootSubDir +
dirName;
- const struct dirent *next_file = nullptr;
+ const dirent *next_file = nullptr;
DIR *const dir = opendir(path.c_str());
if (dir != nullptr)
{
diff --git a/src/game.cpp b/src/game.cpp
index e747bf6bb..4e3c399cd 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -578,7 +578,7 @@ bool Game::saveScreenshot(SDL_Surface *const screenshot,
time_t rawtime;
char buffer [100];
time(&rawtime);
- struct tm *const timeinfo = localtime(&rawtime);
+ tm *const timeinfo = localtime(&rawtime);
strftime(buffer, 99, "%Y-%m-%d_%H-%M-%S", timeinfo);
const std::string serverName = settings.serverName;
diff --git a/src/gui/windows/whoisonline.cpp b/src/gui/windows/whoisonline.cpp
index b55515208..0e79a9bda 100644
--- a/src/gui/windows/whoisonline.cpp
+++ b/src/gui/windows/whoisonline.cpp
@@ -576,7 +576,7 @@ int WhoIsOnline::downloadThread(void *ptr)
// Make sure the resources2.txt and news.txt aren't cached,
// in order to always get the latest version.
- struct curl_slist *pHeaders = nullptr;
+ curl_slist *pHeaders = nullptr;
pHeaders = curl_slist_append(
pHeaders, "pragma: no-cache");
pHeaders = curl_slist_append(pHeaders,
diff --git a/src/resources/db/unitsdb.cpp b/src/resources/db/unitsdb.cpp
index efd747fcf..73952db8d 100644
--- a/src/resources/db/unitsdb.cpp
+++ b/src/resources/db/unitsdb.cpp
@@ -52,7 +52,7 @@ namespace
{
A_DEFAULT_COPY(UnitDescription)
- STD_VECTOR<struct UnitLevel> levels;
+ STD_VECTOR<UnitLevel> levels;
double conversion;
bool mix;
};