fuzzylite:development

Last commit made on 2023-05-16
Get this branch:
git clone -b development https://git.launchpad.net/fuzzylite

Branch merges

Branch information

Name:
development
Repository:
lp:fuzzylite

Recent commits

6a8dbaf... by Jan Michalski <email address hidden>

Updated Doxygen URL (#121)

a651f3d... by Juan Rada-Vilela <email address hidden>

Fix: Catch2 (#114)

* find_package(Catch2) first, else use bundled version

* #include <catch2/catch.hpp>

* exclude catch.hpp from linting

* Message for Catch2. Remove unnecessary disabled warnings

569eba9... by Juan Rada-Vilela <email address hidden>

Fix #89: unit tests passes on i386. thanks to @josch (#113)

e435b09... by Juan Rada-Vilela <email address hidden>

Fix: Linting (#112)

* Fix Linting test 1

* Move .clang-format to root

* Warning instead of Error when cannot build tests

* Convert CMake error to warning when building tests using c++98

* Finally, fixed

eda14b6... by Juan Rada-Vilela <email address hidden>

feature: catch2 (#111)

* catch2

* Updated catch library and tests

b17955f... by "Juan Rada-Vilela, Ph.D" <email address hidden>

GitHub Actions on development linux only

cb15b92... by "Juan Rada-Vilela, Ph.D" <email address hidden>

GitHub Actions on development branch

6e93682... by "Juan Rada-Vilela, Ph.D" <email address hidden>

Merge branch 'main' into development

da4e875... by Johannes Schauer Marin Rodrigues

fuzzylite/src/main.cpp: support building with gcc-12 (#108)

* std::set_unexpected() is removed in c++17
 * We build with -Wall -Wextra -Werror and with gcc-12, using
   std::set_unexpected will trigger the warning due to
   -Werror=deprecated-declarations which in turn is treated as an error and
   makes the build fail.

2abb0a5... by Johannes Schauer Marin Rodrigues

./examples/application/clean.sh: add shebang (#109)