commit 11ec17f63b6767b537803e80f6011a18e9895403
parent 64fbe1a48a187254a04fe0d023a420c61e427b7a
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 13 Feb 2026 11:01:26 +0100
Small update of the formatting of sln-build tool sources
Diffstat:
1 file changed, 22 insertions(+), 22 deletions(-)
diff --git a/src/sln_build.c b/src/sln_build.c
@@ -57,28 +57,28 @@ struct args {
int verbose;
enum line_list_format line_format;
};
-#define ARGS_DEFAULT__ { \
- /* Spectroscopic parameters */ \
- NULL, /* line list */ \
- NULL, /* Isotopologue metadata */ \
- SLN_LINE_PROFILE_VOIGT, /* Line profile */ \
- \
- NULL, /* Output */ \
- \
- /* Thermodynamic properties */ \
- NULL, \
- -1, /* Pressure [atm] */ \
- -1, /* Temperature [K] */ \
- \
- /* Polyline */ \
- 0.01, \
- 16, \
- SLN_MESH_UPPER, \
- \
- /* Miscellaneous */ \
- 0, /* Quit */ \
- 0, /* Verbose */ \
- LINE_LIST_HITRAN /* lines_format */ \
+#define ARGS_DEFAULT__ { \
+ /* Spectroscopic parameters */ \
+ NULL, /* line list */ \
+ NULL, /* Isotopologue metadata */ \
+ SLN_LINE_PROFILE_VOIGT, /* Line profile */ \
+ \
+ NULL, /* Output */ \
+ \
+ /* Thermodynamic properties */ \
+ NULL, \
+ -1, /* Pressure [atm] */ \
+ -1, /* Temperature [K] */ \
+ \
+ /* Polyline */ \
+ 0.01, \
+ 16, \
+ SLN_MESH_UPPER, \
+ \
+ /* Miscellaneous */ \
+ 0, /* Quit */ \
+ 0, /* Verbose */ \
+ LINE_LIST_HITRAN /* lines_format */ \
}
static const struct args ARGS_DEFAULT = ARGS_DEFAULT__;