aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorh.udo <hudokkow@gmail.com>2018-06-07 15:12:01 +0100
committerh.udo <hudokkow@gmail.com>2018-06-12 10:25:53 +0100
commit9aa8827638240f38ae1adb17767c1cf7e2a880d7 (patch)
tree2c3954df3087a0d14d51ba793a8dd394a2d6eb14 /tools
parent31c0ee8eda3d70d4d57dc152532de675d026fd9a (diff)
[TexturePacker] Nuke include guards
Diffstat (limited to 'tools')
-rw-r--r--tools/depends/native/TexturePacker/src/Win32/dirent.h4
-rw-r--r--tools/depends/native/TexturePacker/src/XBTFWriter.h4
-rw-r--r--tools/depends/native/TexturePacker/src/cmdlineargs.h5
-rw-r--r--tools/depends/native/TexturePacker/src/md5.h4
4 files changed, 0 insertions, 17 deletions
diff --git a/tools/depends/native/TexturePacker/src/Win32/dirent.h b/tools/depends/native/TexturePacker/src/Win32/dirent.h
index 7e8b5d51be..e57b250ff8 100644
--- a/tools/depends/native/TexturePacker/src/Win32/dirent.h
+++ b/tools/depends/native/TexturePacker/src/Win32/dirent.h
@@ -1,6 +1,3 @@
-#ifndef DIRENT_INCLUDED
-#define DIRENT_INCLUDED
-
/*
Declaration of POSIX directory browsing functions and types for Win32.
@@ -54,4 +51,3 @@ void rewinddir(DIR *);
}
#endif
-#endif
diff --git a/tools/depends/native/TexturePacker/src/XBTFWriter.h b/tools/depends/native/TexturePacker/src/XBTFWriter.h
index 575e80586a..9f173a69d4 100644
--- a/tools/depends/native/TexturePacker/src/XBTFWriter.h
+++ b/tools/depends/native/TexturePacker/src/XBTFWriter.h
@@ -1,6 +1,3 @@
-#ifndef XBTFWRITER_H_
-#define XBTFWRITER_H_
-
/*
* Copyright (C) 2005-2013 Team XBMC
* http://kodi.tv
@@ -49,4 +46,3 @@ private:
size_t m_size;
};
-#endif
diff --git a/tools/depends/native/TexturePacker/src/cmdlineargs.h b/tools/depends/native/TexturePacker/src/cmdlineargs.h
index 711cdcc973..d836f535e5 100644
--- a/tools/depends/native/TexturePacker/src/cmdlineargs.h
+++ b/tools/depends/native/TexturePacker/src/cmdlineargs.h
@@ -1,6 +1,3 @@
-#ifndef CMDLINEARGS_H
-#define CMDLINEARGS_H
-
/*
* Copyright (C) 2005-2013 Team XBMC
* http://kodi.tv
@@ -149,5 +146,3 @@ private:
} // ParseCmdLine()
}; // class CmdLineArgs
-
-#endif // CMDLINEARGS_H
diff --git a/tools/depends/native/TexturePacker/src/md5.h b/tools/depends/native/TexturePacker/src/md5.h
index bcf8464267..6a1554765a 100644
--- a/tools/depends/native/TexturePacker/src/md5.h
+++ b/tools/depends/native/TexturePacker/src/md5.h
@@ -22,9 +22,6 @@
#pragma once
-#ifndef MD5_H
-#define MD5_H
-
#include <cstring> /* for memcpy() */
#include <cstdint>
@@ -39,4 +36,3 @@ void MD5Init(struct MD5Context *ctx);
void MD5Update(struct MD5Context *ctx, const uint8_t *buf, unsigned len);
void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
-#endif