Improve source code

This commit is contained in:
Loic Guegan 2023-05-10 06:24:59 +02:00
parent d98879e559
commit 8ffceb67ba
2 changed files with 3 additions and 2 deletions

View file

@ -16,6 +16,7 @@ public:
virtual std::string ReadLine() = 0;
/// @brief Write to engine stdin
virtual void Write(std::string) = 0;
virtual ~Process(){};
};
struct FailedToStartEngine : public std::exception {

View file

@ -20,8 +20,8 @@
#include <vector>
#define IS_OPT_PARAM(str) \
((str) == "name" || (str) == "type" | (str) == "default" || \
(str) == "min" || (str) == "max" || (str) == "var")
(((str) == "name") || ((str) == "type") || ((str) == "default") || \
((str) == "min") || ((str) == "max") || ((str) == "var"))
namespace uciadapter {