Julien Marrec
|
05c8cf503b
|
Lint: use automated tooling to reformat C++ and CMakeLists files (#2103)
* Add initial clang tidy / clang format config files
* Clang format the entire codebase
```
find ./src -regextype posix-extended -regex '.*\.(cpp|hpp|c|h|cxx|hxx)$' | xargs clang-format-12 -style=file -i -fallback-style=none
find ./include -regextype posix-extended -regex '.*\.(cpp|hpp|c|h|cxx|hxx)$' | xargs clang-format-12 -style=file -i -fallback-style=none
find ./Web -regextype posix-extended -regex '.*\.(cpp|hpp|c|h|cxx|hxx)$' | xargs clang-format-12 -style=file -i -fallback-style=none
find ./dev -regextype posix-extended -regex '.*\.(cpp|hpp|c|h|cxx|hxx)$' | xargs clang-format-12 -style=file -i -fallback-style=none
find ./wrappers -regextype posix-extended -regex '.*\.(cpp|hpp|c|h|cxx|hxx)$' | xargs clang-format-12 -style=file -i -fallback-style=none
```
* Add a .cmake-format file and reformat CmakeLists.txt with it
https://github.com/cheshirekow/cmake_format
* Add a clang-format workflow
only runs on PRs, only on touched files
|
2022-03-31 10:51:48 -04:00 |
|
Ian Bell
|
5674475f43
|
Tidy up paths
|
2021-02-02 16:19:47 -05:00 |
|
luzpaz
|
93f4a986e2
|
Misc. typos (#1726)
Found via `codespell -i 3 -w -I ../coolprop-word-whitelist.txt` whereby whitelist consists of:
```
cas
formate
hel
nd
te
tim
ue
uint
```
|
2018-08-14 23:06:49 -06:00 |
|
Ian Bell
|
bab5dc6f91
|
Fix fortran binding functions (needed VALUE in two places)
|
2016-10-23 18:11:28 -06:00 |
|
Ian Bell
|
6818e91dff
|
Try to update FORTRAN examples - something funny going on
|
2016-10-20 08:47:33 -06:00 |
|
Ian Bell
|
0c06716f8b
|
Replace tabs with spaces in cpinterface.f90
|
2015-11-14 16:40:56 -07:00 |
|
smyng91
|
1fcd2d9ed5
|
Update cpinterface.f90
|
2015-10-12 09:33:11 -04:00 |
|
smyng91
|
27c60da5c6
|
FORTRAN low-level interface
|
2015-10-11 18:25:53 -04:00 |
|
Ian Bell
|
73ceaa3190
|
Updated docs for FORTRAN wrapper
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
|
2014-08-19 15:53:20 +02:00 |
|
Ian Bell
|
02e6a70aa3
|
Updated FORTRAN 77 wrapper - works at a rudimentary level, just need to re-enable other functions
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
|
2014-06-26 01:50:20 +02:00 |
|
Ian Bell
|
032826e70f
|
Updated FORTRAN wrapper docs
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
|
2014-06-20 13:39:36 +02:00 |
|
Ian Bell
|
5197b469b2
|
Updated docs for FORTRAN example, tidied up example.
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
|
2014-06-20 13:05:28 +02:00 |
|
Ian Bell
|
d87ef29780
|
Added modular FORTRAN wrapper files using ISO_C_BINDING
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
|
2014-06-20 12:58:33 +02:00 |
|
Ian Bell
|
315806d9f7
|
Detailed example working with gfortran/g++ mixed compilation, but without module
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
|
2014-06-20 12:40:35 +02:00 |
|
Ian Bell
|
96c216110d
|
Added simple example for mixed-mode FORTRAN/c++ compilation - works
Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
|
2014-06-20 11:56:35 +02:00 |
|
Ian bell
|
b3847c7522
|
Initial commit for v5, but this time with the right line endings
Signed-off-by: Ian bell <ian.h.bell@gmail.com>
|
2014-05-14 12:46:24 +02:00 |
|