aboutsummaryrefslogtreecommitdiff
path: root/tools/create_kyradat
diff options
context:
space:
mode:
Diffstat (limited to 'tools/create_kyradat')
-rw-r--r--tools/create_kyradat/extract.cpp9
-rw-r--r--tools/create_kyradat/extract.h3
2 files changed, 2 insertions, 10 deletions
diff --git a/tools/create_kyradat/extract.cpp b/tools/create_kyradat/extract.cpp
index 1e3af95036..62f18ab321 100644
--- a/tools/create_kyradat/extract.cpp
+++ b/tools/create_kyradat/extract.cpp
@@ -23,12 +23,11 @@
#include "extract.h"
+namespace {
+
// Filename creation
void createFilename(char *dstFilename, const ExtractInformation *info, const char *filename);
-
-namespace {
-
void createLangFilename(char *dstFilename, const ExtractInformation *info, const char *filename);
// Extraction function prototypes
@@ -81,8 +80,6 @@ const ExtractType extractTypeTable[] = {
{ -1, 0, 0}
};
-} // end of anonymous namespace
-
void createFilename(char *dstFilename, const ExtractInformation *info, const char *filename) {
strcpy(dstFilename, filename);
@@ -105,8 +102,6 @@ void createFilename(char *dstFilename, const ExtractInformation *info, const cha
}
}
-namespace {
-
void createLangFilename(char *dstFilename, const ExtractInformation *info, const char *filename) {
strcpy(dstFilename, filename);
diff --git a/tools/create_kyradat/extract.h b/tools/create_kyradat/extract.h
index fdfaa61835..e6ff444c13 100644
--- a/tools/create_kyradat/extract.h
+++ b/tools/create_kyradat/extract.h
@@ -68,8 +68,5 @@ struct ExtractType {
const ExtractType *findExtractType(const int type);
bool isLangSpecific(const int type);
-// TODO: Do not export this in the future
-void createFilename(char *dstFilename, const ExtractInformation *info, const char *filename);
-
#endif