From 28ce60d4ee6936cabf672b06853eee06aa5692f1 Mon Sep 17 00:00:00 2001 From: CarloCattano Date: Tue, 13 Jan 2026 20:19:50 +0100 Subject: [PATCH] Fix compilation error on linux: std::find can't be found without including algorithm or perhaps could be done imporitng Utils as well --- commandLine/src/utils/LibraryBinary.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commandLine/src/utils/LibraryBinary.h b/commandLine/src/utils/LibraryBinary.h index 027d85c1..b7365310 100644 --- a/commandLine/src/utils/LibraryBinary.h +++ b/commandLine/src/utils/LibraryBinary.h @@ -1,9 +1,9 @@ #pragma once +#include #include #include - #include "ofConstants.h" #include "defines.h"