diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-03-05 16:44:50 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-03-05 16:44:50 +0100 |
commit | 5dbf1809c6e3e905b94b8764e99491e608122261 (patch) | |
tree | 5e5a5360db15d86d59ec8c6e4f7eb511388c5a9a /platform/uwp/export | |
parent | 45438e9918d421b244bfd7776a30e67dc7f2d3e3 (diff) |
A Whole New World (clang-format edition)
I can show you the code
Pretty, with proper whitespace
Tell me, coder, now when did
You last write readable code?
I can open your eyes
Make you see your bad indent
Force you to respect the style
The core devs agreed upon
A whole new world
A new fantastic code format
A de facto standard
With some sugar
Enforced with clang-format
A whole new world
A dazzling style we all dreamed of
And when we read it through
It's crystal clear
That now we're in a whole new world of code
Diffstat (limited to 'platform/uwp/export')
-rw-r--r-- | platform/uwp/export/export.cpp | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/platform/uwp/export/export.cpp b/platform/uwp/export/export.cpp index 52a22a1942..a9b26056fc 100644 --- a/platform/uwp/export/export.cpp +++ b/platform/uwp/export/export.cpp @@ -66,21 +66,21 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *************************************************************************/ #if 0 -#include "version.h" #include "export.h" -#include "object.h" +#include "bind/core_bind.h" #include "editor/editor_import_export.h" #include "editor/editor_node.h" -#include "platform/uwp/logo.h" -#include "os/file_access.h" -#include "io/zip.h" -#include "io/unzip.h" -#include "io/zip_io.h" -#include "io/sha256.h" -#include "io/base64.h" -#include "bind/core_bind.h" #include "global_config.h" +#include "io/base64.h" #include "io/marshalls.h" +#include "io/sha256.h" +#include "io/unzip.h" +#include "io/zip.h" +#include "io/zip_io.h" +#include "object.h" +#include "os/file_access.h" +#include "platform/uwp/logo.h" +#include "version.h" #include <zlib.h> @@ -120,14 +120,14 @@ static const char* uwp_device_capabilites[] = { }; #ifdef OPENSSL_ENABLED -#include <openssl/bio.h> #include <openssl/asn1.h> -#include <openssl/pkcs7.h> -#include <openssl/pkcs12.h> -#include <openssl/err.h> #include <openssl/asn1t.h> -#include <openssl/x509.h> +#include <openssl/bio.h> +#include <openssl/err.h> #include <openssl/ossl_typ.h> +#include <openssl/pkcs12.h> +#include <openssl/pkcs7.h> +#include <openssl/x509.h> namespace asn1 { // https://msdn.microsoft.com/en-us/gg463180.aspx @@ -2391,4 +2391,3 @@ void register_uwp_exporter() { EditorImportExport::get_singleton()->add_export_platform(exporter); #endif } - |