ClangFormat: apply to source, most of intern

Apply clang format as proposed in T53211.

For details on usage and instructions for migrating branches
without conflicts, see:

https://wiki.blender.org/wiki/Tools/ClangFormat
This commit is contained in:
2019-04-17 06:17:24 +02:00
parent b3dabc200a
commit e12c08e8d1
4481 changed files with 1230080 additions and 1155401 deletions

View File

@@ -21,29 +21,32 @@
#include <string>
#include <map>
#include <vector>
#include <algorithm> // sort()
#include <algorithm> // sort()
#include "COLLADASaxFWLIErrorHandler.h"
/** \brief Handler class for parser errors
*/
class ErrorHandler : public COLLADASaxFWL::IErrorHandler
{
public:
/** Constructor. */
ErrorHandler();
class ErrorHandler : public COLLADASaxFWL::IErrorHandler {
public:
/** Constructor. */
ErrorHandler();
/** Destructor. */
virtual ~ErrorHandler();
/** handle any error thrown by the parser. */
bool virtual handleError(const COLLADASaxFWL::IError* error);
/** True if there was an error during parsing. */
bool hasError() { return mError; }
private:
/** Disable default copy ctor. */
ErrorHandler(const ErrorHandler& pre);
/** Disable default assignment operator. */
const ErrorHandler& operator= ( const ErrorHandler& pre );
/** Hold error status. */
bool mError;
/** Destructor. */
virtual ~ErrorHandler();
/** handle any error thrown by the parser. */
bool virtual handleError(const COLLADASaxFWL::IError *error);
/** True if there was an error during parsing. */
bool hasError()
{
return mError;
}
private:
/** Disable default copy ctor. */
ErrorHandler(const ErrorHandler &pre);
/** Disable default assignment operator. */
const ErrorHandler &operator=(const ErrorHandler &pre);
/** Hold error status. */
bool mError;
};