Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-02-01 17:36:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-01 17:36:28 +0300
commit65ec7ec524e667ec95ce947a95f6273088dffee6 (patch)
tree68e47c42cefed72c4d360b5b2f473b35cafd96eb /intern/clog
parent7b05b2564d8f7ebe915ba212c0dbaf40be568cfc (diff)
Cleanup: remove redundant, invalid info from headers
BF-admins agree to remove header information that isn't useful, to reduce noise. - BEGIN/END license blocks Developers should add non license comments as separate comment blocks. No need for separator text. - Contributors This is often invalid, outdated or misleading especially when splitting files. It's more useful to git-blame to find out who has developed the code. See P901 for script to perform these edits.
Diffstat (limited to 'intern/clog')
-rw-r--r--intern/clog/CLG_log.h6
-rw-r--r--intern/clog/clog.c4
2 files changed, 0 insertions, 10 deletions
diff --git a/intern/clog/CLG_log.h b/intern/clog/CLG_log.h
index 20a69ed792c..acdcb0def38 100644
--- a/intern/clog/CLG_log.h
+++ b/intern/clog/CLG_log.h
@@ -1,6 +1,4 @@
/*
- * ***** BEGIN GPL LICENSE BLOCK *****
- *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
@@ -14,8 +12,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * ***** END GPL LICENSE BLOCK *****
*/
#ifndef __CLG_LOG_H__
@@ -53,8 +49,6 @@
* - `WARN`: General warnings (which aren't necessary to show to users).
* - `ERROR`: An error we can recover from, should not happen.
* - `FATAL`: Similar to assert. This logs the message, then a stack trace and abort.
- *
- *
* Verbosity Level
* ---------------
*
diff --git a/intern/clog/clog.c b/intern/clog/clog.c
index 6e201cf55f8..48033c6ed71 100644
--- a/intern/clog/clog.c
+++ b/intern/clog/clog.c
@@ -1,6 +1,4 @@
/*
- * ***** BEGIN GPL LICENSE BLOCK *****
- *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
@@ -14,8 +12,6 @@
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- *
- * ***** END GPL LICENSE BLOCK *****
*/
/** \file clog/clog.c