ermig1979 / Simd

C++ image processing and machine learning library with using of SIMD: SSE, AVX, AVX-512, AMX for x86/x64, VMX(Altivec) and VSX(Power7) for PowerPC, NEON for ARM.
http://ermig1979.github.io/Simd
MIT License
2.03k stars 406 forks source link

Wrong ROOT_PATH value in Test.cpp #200

Closed elpascal closed 2 years ago

elpascal commented 2 years ago

Line 821 , replace "../.." by ".."

diff --git a/src/Test/Test.cpp b/src/Test/Test.cpp
index 24cf776b..554581e0 100644
--- a/src/Test/Test.cpp
+++ b/src/Test/Test.cpp
@@ -818,7 +818,7 @@ namespace Test
         return 0;
     }

-    String ROOT_PATH = "../..";
+    String ROOT_PATH = "..";
     String SOURCE = "";
     String OUTPUT = "";
     String REAL_IMAGE = "";
ermig1979 commented 2 years ago

Thanks!