solstice

Compute collected power and efficiencies of a solar plant
git clone git://git.meso-star.com/solstice.git
Log | Files | Refs | README | LICENSE

commit 1b17bfa40784a802080970c8d094fc993ea21871
parent 02caba3d3510df36651bbe0ca65a6ce3b2246a5a
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Tue, 29 Nov 2016 11:05:34 +0100

Fix some coding style issues

Diffstat:
Msrc/core/solstice_core_scene.h | 6+++---
Msrc/core/test_core_utils.h | 35++++++++++++++++++-----------------
2 files changed, 21 insertions(+), 20 deletions(-)

diff --git a/src/core/solstice_core_scene.h b/src/core/solstice_core_scene.h @@ -13,8 +13,8 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef score_scene_H -#define score_scene_H +#ifndef SCORE_SCENE_H +#define SCORE_SCENE_H #include <rsys/ref_count.h> @@ -45,4 +45,4 @@ struct score_scene { ref_T ref; }; -#endif /* score_scene_H */ +#endif /* SCORE_SCENE_H */ diff --git a/src/core/test_core_utils.h b/src/core/test_core_utils.h @@ -1,20 +1,20 @@ /* Copyright (C) CNRS 2016 -* -* 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 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see <http://www.gnu.org/licenses/>. */ - -#ifndef test_core_utils_H -#define test_core_utils_H + * + * 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 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. */ + +#ifndef TEST_CORE_UTILS_H +#define TEST_CORE_UTILS_H #include "solstice_core.h" @@ -97,4 +97,5 @@ pp_sum double* mean, double* std); -#endif /* test_core_utils_H */ +#endif /* TEST_CORE_UTILS_H */ +