Merge pull request #31266 from IAmActuallyCthulhu/pr/remove-redundant-author-comments

Remove redundant author doc comments
This commit is contained in:
Rémi Verschelde
2019-08-14 13:45:54 +02:00
committed by GitHub
138 changed files with 18 additions and 485 deletions

View File

@ -34,10 +34,6 @@
#include "core/typedefs.h"
#include "core/ustring.h"
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
//@ TODO, excellent candidate for THREAD_SAFE MACRO, should go through all these and add THREAD_SAFE where it applies
class DirAccess {
public:

View File

@ -37,10 +37,6 @@
#include "core/typedefs.h"
#include "core/ustring.h"
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
/**
* Input Event classes. These are used in the main loop.
* The events are pretty obvious.

View File

@ -33,10 +33,6 @@
#include "core/ustring.h"
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
/*
Special Key:

View File

@ -35,10 +35,6 @@
#include "core/reference.h"
#include "core/script_language.h"
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
class MainLoop : public Object {
GDCLASS(MainLoop, Object);

View File

@ -35,10 +35,6 @@
#include <stddef.h>
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
#ifndef PAD_ALIGN
#define PAD_ALIGN 16 //must always be greater than this at much
#endif

View File

@ -41,10 +41,6 @@
#include <stdarg.h>
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
class Mutex;
class OS {

View File

@ -33,10 +33,6 @@
#include "core/error_list.h"
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
class Semaphore {
protected:
static Semaphore *(*create_func)();

View File

@ -34,10 +34,6 @@
#include "core/typedefs.h"
#include "core/ustring.h"
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
typedef void (*ThreadCreateCallback)(void *p_userdata);
class Thread {