JtReader: Apply clang format

This commit is contained in:
wmayer
2023-09-10 11:17:04 +02:00
committed by wwmayer
parent ac020f6ea9
commit 780ce5c766
25 changed files with 1209 additions and 1290 deletions

View File

@@ -11,11 +11,11 @@
// Importing of App classes
#ifdef FC_OS_WIN32
# define MeshExport __declspec(dllimport)
# define AppJtReaderExport __declspec(dllexport)
#else // for Linux
# define MeshExport
# define AppJtReaderExport
#define MeshExport __declspec(dllimport)
#define AppJtReaderExport __declspec(dllexport)
#else// for Linux
#define MeshExport
#define AppJtReaderExport
#endif
#ifdef _PreComp_
@@ -23,16 +23,16 @@
/// point at which warnings of overly long specifiers disabled (needed for VC6)
#ifdef _MSC_VER
# pragma warning( disable : 4251 )
# pragma warning( disable : 4503 )
# pragma warning( disable : 4275 )
# pragma warning( disable : 4786 ) // specifier longer then 255 chars
#pragma warning(disable : 4251)
#pragma warning(disable : 4503)
#pragma warning(disable : 4275)
#pragma warning(disable : 4786)// specifier longer then 255 chars
#endif
// standard
#include <cstdio>
#include <cassert>
#include <cstdio>
// STL
#include <algorithm>
@@ -51,6 +51,6 @@
// sys
#include <sys/types.h>
#endif //_PreComp_
#endif//_PreComp_
#endif