From fe4609baf45514517bef0d4278773a82393d06a5 Mon Sep 17 00:00:00 2001 From: Carl Philipp Klemm <philipp@uvos.xyz> Date: Fri, 6 Jan 2023 14:47:38 +0100 Subject: [PATCH] test eisRemoveUnneededBrackets --- test.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test.cpp b/test.cpp index 498dd25..28d6344 100644 --- a/test.cpp +++ b/test.cpp @@ -6,6 +6,7 @@ #include "log.h" #include "normalize.h" #include "basicmath.h" +#include "strops.h" void printDataVect(const std::vector<eis::DataPoint> in) { @@ -222,6 +223,8 @@ inline void filterData(std::vector<eis::DataPoint>& data, size_t outputSize) int main(int argc, char** argv) { + std::string tst("(c)"); + eisRemoveUnneededBrackets(tst); eis::Log::headers = true; eis::Log::level = eis::Log::INFO; runSingle(); -- GitLab